:root {
--font-heading: "Space Grotesk", sans-serif;
--font-body: "Plus Jakarta Sans", sans-serif;
--font-mono: "Space Mono", monospace;
--color-bg: rgb(8, 9, 13);
--color-surface: rgb(14, 16, 22);
--color-card: rgb(19, 22, 30);
--color-primary: rgb(32, 23, 224);
--color-primary-bright: rgb(104, 98, 255);
--color-accent: rgb(21, 205, 242);
--color-white: rgb(255, 255, 255);
--color-text: rgb(233, 237, 246);
--color-success: rgb(95, 213, 150);
--radius-sm: 12px;
--radius-md: 18px;
--radius-lg: 26px;
--section-py: 100px;
}
@keyframes sheen {
  0% {
      background-position: 140% 0;
  }
  100% {
      background-position: -40% 0;
  }
}
@keyframes aurora-1 {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  50% {
      transform: translate(80px, 60px) scale(1.12);
  }
}
@keyframes aurora-2 {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  50% {
      transform: translate(-70px, 40px) scale(1.08);
  }
}
@keyframes aurora-3 {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  50% {
      transform: translate(40px, -60px) scale(1.15);
  }
}
@keyframes floaty {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-14px);
  }
}
@keyframes pulse {
  0%, 100% {
      opacity: 0.5;
  }
  50% {
      opacity: 1;
  }
}
@keyframes scroll-x {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}
* {
    box-sizing: border-box;
}
*::before {
    box-sizing: border-box;
}
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgb(from var(--color-text) r g b / 0.72);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}
h1 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 82px;
}
h2 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 50px;
}
h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 23px;
}
h4 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 19px;
}
h5 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 17px;
}
h6 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--color-white);
    font-size: 14px;
}
p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.65;
}
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--color-white);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    font-size: 16px;
}
label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
img {
    max-width: 100%;
    display: block;
}
.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.has-js [data-reveal].is-in {
    opacity: 1;
    transform: none;
}
.btn:focus {
    outline: none;
}
.site-menu .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgb(from var(--color-text) r g b / 0.66);
    padding: 4px 0;
}
.site-menu .nav-link:hover {
    color: var(--color-white);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(620px circle at var(--mx, 50%) var(--my, 12%), rgb(from var(--color-accent) r g b / 0.1), transparent 60%);
}
.aurora-blob:nth-child(1) {
    width: 660px;
    height: 660px;
    top: -240px;
    left: -140px;
    background: radial-gradient(circle, var(--color-primary-bright), transparent 64%);
    animation: aurora-1 18s ease-in-out infinite;
}
.aurora-blob:nth-child(2) {
    width: 560px;
    height: 560px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, var(--color-accent), transparent 64%);
    animation: aurora-2 22s ease-in-out infinite;
}
.aurora-blob:nth-child(3) {
    width: 520px;
    height: 520px;
    bottom: -300px;
    left: 36%;
    background: radial-gradient(circle, var(--color-primary), transparent 62%);
    animation: aurora-3 26s ease-in-out infinite;
}
.hero > .container {
    position: relative;
    z-index: 1;
}
.hero-stage::before {
    content: "";
    position: absolute;
    width: 78%;
    height: 70%;
    left: 11%;
    top: 16%;
    background: radial-gradient(ellipse, rgb(from var(--color-primary-bright) r g b / 0.45), transparent 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}
.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(130deg, rgb(from var(--color-primary-bright) r g b / 0.6), rgb(from var(--color-accent) r g b / 0.5));
    -webkit-mask: linear-gradient(rgb(0, 0, 0) 0 0) content-box, linear-gradient(rgb(0, 0, 0) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.bento-card:hover::before {
    opacity: 1;
}
.bento-icon rect:first-child {
    fill: var(--color-primary-bright);
}
.bento-icon rect:last-child {
    fill: var(--color-accent);
}
.steps-grid > div:nth-child(2) .step-num {
    background: linear-gradient(135deg, var(--color-primary-bright), var(--color-accent));
}
.steps-grid > div:nth-child(3) .step-num {
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
}
.templates-slider-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.15);
}
.templates-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(from var(--color-accent) r g b / 0.5);
}
.price-grid > div:nth-child(2) .price-card {
    position: relative;
    border-color: rgb(from var(--color-primary-bright) r g b / 0.5);
    background: linear-gradient(160deg, rgb(from var(--color-primary-bright) r g b / 0.12), var(--color-card) 55%);
    box-shadow: 0 30px 70px rgb(from var(--color-primary) r g b / 0.25);
}
.price-card .btn {
    margin-top: 8px;
}
.closing::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgb(from var(--color-primary-bright) r g b / 0.3), transparent 62%);
    filter: blur(60px);
    pointer-events: none;
}
.closing > .container {
    position: relative;
    z-index: 1;
}
.footer-links a:hover {
    color: var(--color-accent);
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.faq-item:has(.faq-btn .accordion-button:not(.collapsed)) {
    border-color: rgb(from var(--color-accent) r g b / 0.4);
}
.faq-btn .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 24px 56px 24px 28px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
    color: var(--color-white);
    text-align: left;
    position: relative;
    background: var(--color-card);
}
.faq-btn .accordion-button::after {
    content: "";
    position: absolute;
    right: 37px;
    top: 50%;
    width: 2px;
    height: 20px;
    margin-top: -10px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-image: none;
}
.faq-btn .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-btn .accordion-button::before {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-body .acc-body-content {
    margin: 0;
}
.faq-item .accordion-collapse {
    border: 0;
}
.filter-chip.is-active {
    color: var(--color-bg);
    background: var(--color-white);
    border-color: var(--color-white);
}
.gallery-card:hover .gallery-shot img {
    transform: scale(1.05);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.form-field.full {
    grid-column: 1 / -1;
}
.form-input::placeholder {
    color: rgb(from var(--color-text) r g b / 0.35);
}
.form-textarea::placeholder {
    color: rgb(from var(--color-text) r g b / 0.35);
}
.form-input:focus {
    outline: none;
    border-color: rgb(from var(--color-accent) r g b / 0.6);
    background: rgb(from var(--color-white) r g b / 0.06);
    box-shadow: 0 0 0 3px rgb(from var(--color-accent) r g b / 0.14);
}
.form-select:focus {
    outline: none;
    border-color: rgb(from var(--color-accent) r g b / 0.6);
    background: rgb(from var(--color-white) r g b / 0.06);
    box-shadow: 0 0 0 3px rgb(from var(--color-accent) r g b / 0.14);
}
.form-textarea:focus {
    outline: none;
    border-color: rgb(from var(--color-accent) r g b / 0.6);
    background: rgb(from var(--color-white) r g b / 0.06);
    box-shadow: 0 0 0 3px rgb(from var(--color-accent) r g b / 0.14);
}
.breadcrumb-row a:hover {
    color: var(--color-accent);
}
.article-prose > p {
    font-size: 18px;
    line-height: 1.75;
    color: rgb(from var(--color-text) r g b / 0.78);
    margin-bottom: 26px;
}
.article-prose > p:first-child {
    font-size: 21px;
    line-height: 1.6;
    color: var(--color-text);
}
.article-prose ul li {
    position: relative;
    padding-left: 30px;
    font-size: 17px;
    line-height: 1.6;
    color: rgb(from var(--color-text) r g b / 0.78);
}
.article-prose ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-accent);
}
.author-card .article-avatar {
    width: 64px;
    height: 64px;
    flex: none;
}
.post-card:hover .post-shot img {
    transform: scale(1.05);
}
.featured-post:hover .featured-shot img {
    transform: scale(1.04);
}
.page-btn.is-active {
    color: var(--color-bg);
    background: var(--color-white);
    border-color: var(--color-white);
}
.newsletter-form .form-input {
    flex: 1;
}
[media:(prefers-reduced-motion: reduce)] .hero::before {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .hero::after {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .marquee-track {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .glass-chip {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .chip-dot {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .grad-text {
    animation: none;
}
[media:(prefers-reduced-motion: reduce)] .has-js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}
[media:(prefers-reduced-motion: reduce)] .templates-slider-track {
    transition: none;
}
.navbar-nav .nav-link.active {
    color: var(--color-white);
}
.contact-form-card .form-control {
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-body);
    color: var(--color-white);
    background: rgb(from var(--color-white) r g b / 0.04);
    border: 1px solid rgb(from var(--color-white) r g b / 0.12);
    border-radius: var(--radius-sm);
}
.contact-form-card form label {
    font-size: 13px;
    font-weight: 600;
    color: rgb(from var(--color-text) r g b / 0.8);
}
.contact-form-card .dropdown button {
    width: 100%;
    font-size: 15px;
    padding: 18px 16px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-body);
    color: var(--color-white) !important;
    background: rgb(from var(--color-white) r g b / 0.04);
    border: 1px solid rgb(from var(--color-white) r g b / 0.12) !important;
    border-radius: var(--radius-sm);
    background-color: rgb(from var(--color-white) r g b / 0.04) !important;
}
.article-prose ol li[data-list="bullet"]::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    color: var(--color-accent);
    border-radius: 2px;
    background: var(--color-accent);
}
.article-prose ol li[data-list="bullet"] {
    position: relative;
    padding-left: 30px;
    font-size: 17px;
    line-height: 1.6;
    color: rgb(from var(--color-text) r g b / 0.78);
    list-style-type: none;
}

@media (max-width: 991px) {
h1 {
    font-size: 56px;
}
h2 {
    font-size: 38px;
}
}

@media (max-width: 767px) {
h1 {
    font-size: 44px;
}
h2 {
    font-size: 32px;
}
}

.article-author {
  align-items: center;
  display: flex;
  gap: 12px;
}
.article-author-name {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
}
.article-author-role {
  color: rgb(from var(--color-text) r g b / 0.55);
  font-size: 13px;
}
.article-avatar {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  height: 48px;
  width: 48px;
}
.article-feature {
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgb(0, 0, 0, 0.5);
  margin-bottom: 56px;
  overflow: hidden;
}
.article-feature img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
.article-inline-img {
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  margin: 40px 0;
  overflow: hidden;
}
.article-inline-img figcaption {
  background: var(--color-surface);
  color: rgb(from var(--color-text) r g b / 0.5);
  font-size: 13px;
  padding: 14px 16px;
  text-align: center;
}
.article-inline-img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
.article-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.article-meta-dot {
  background: rgb(from var(--color-text) r g b / 0.4);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}
.article-meta-item {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 14px;
}
.article-prose {
  margin: 0 auto;
  max-width: 760px;
}
.article-prose blockquote {
  background: var(--color-card);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.45;
  margin: 40px 0;
  padding: 28px 32px;
}
.article-prose h2 {
  font-size: 32px;
  margin: 48px 0 18px;
}
.article-prose h3 {
  font-size: 22px;
  margin: 36px 0 14px;
}
.article-prose ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 26px;
}
.article-prose ol {
  display: flex;
  gap: 13px;
  flex-direction: column;
  margin: 0 0 26px;
  list-style: none;
}

@media (max-width: 767px) {
.article-prose blockquote {
  font-size: 20px;
  padding: 22px 24px;
}
.article-prose h2 {
  font-size: 26px;
}
}
.article-tag {
  background: rgb(from var(--color-accent) r g b / 0.1);
  border: 1px solid rgb(from var(--color-accent) r g b / 0.3);
  border-radius: 999px;
  color: var(--color-accent);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding: 6px 13px;
  text-transform: uppercase;
}
.article-tags {
  border-top: 1px solid rgb(from var(--color-white) r g b / 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px auto 0;
  max-width: 760px;
  padding-top: 32px;
}
.article-title {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
.article-title {
  font-size: 42px;
}
}

@media (max-width: 767px) {
.article-title {
  font-size: 32px;
}
}

@media (max-width: 575px) {
.article-title {
  font-size: 27px;
}
}
.aurora {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.aurora-blob {
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.55;
  position: absolute;
}
.author-card {
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 760px;
  padding: 32px;
}
.author-card-bio {
  color: rgb(from var(--color-text) r g b / 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.author-card-name {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.author-card-role {
  color: var(--color-accent);
  font-size: 13px;
  margin-bottom: 12px;
}
.bento-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  overflow: hidden;
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  box-shadow: 0 30px 60px rgb(0, 0, 0, 0.45);
  transform: translateY(-4px);
}
.bento-icon {
  height: 32px;
  margin-bottom: 22px;
  width: 52px;
}
.bento-text {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.bento-title {
  margin-bottom: 10px;
}
.breadcrumb-row {
  align-items: center;
  color: rgb(from var(--color-text) r g b / 0.5);
  display: flex;
  font-size: 13px;
  gap: 10px;
  margin-bottom: 26px;
}
.breadcrumb-row a {
  color: rgb(from var(--color-text) r g b / 0.7);
}
.breadcrumb-sep {
  opacity: 0.5;
}
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  line-height: 1;
  padding: 15px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  justify-content: center;
}
.btn-block {
  justify-content: center;
  width: 100%;
}
.btn-glass {
  backdrop-filter: blur(10px);
  background: rgb(from var(--color-white) r g b / 0.06);
  border-color: rgb(from var(--color-white) r g b / 0.16);
  color: var(--color-white);
}
.btn-glass:hover {
  background: rgb(from var(--color-white) r g b / 0.12);
  border-color: rgb(from var(--color-white) r g b / 0.3);
  color: var(--color-white);
}
.btn-light-filled {
  background: var(--color-white);
  color: var(--color-bg);
}
.btn-light-filled:hover {
  box-shadow: 0 14px 40px rgb(from var(--color-white) r g b / 0.18);
  transform: translateY(-2px);
}
.btn-primary-filled {
  background: linear-gradient(100deg, var(--color-primary), var(--color-primary-bright));
  box-shadow: 0 12px 40px rgb(from var(--color-primary-bright) r g b / 0.45);
  color: var(--color-white);
}
.btn-primary-filled:hover {
  box-shadow: 0 18px 50px rgb(from var(--color-primary-bright) r g b / 0.6);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-text-light {
  background: transparent;
  color: var(--color-white);
  padding-left: 4px;
  padding-right: 4px;
}
.btn-text-light:hover {
  color: var(--color-accent);
}
.chip-dot {
  animation: pulse 2s infinite;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-success);
  height: 9px;
  width: 9px;
}
.chip-label {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 12px;
  margin-top: 4px;
}
.chip-left {
  bottom: 26px;
  left: -28px;
}

@media (max-width: 767px) {
.chip-left {
  left: 12px;
}
}
.chip-mark {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 11px;
  height: 40px;
  width: 40px;
}
.chip-right {
  animation-duration: 7.2s;
  right: -26px;
  top: 84px;
}

@media (max-width: 767px) {
.chip-right {
  right: 12px;
}
}
.chip-stat {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.chip-text {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
}
.closing {
  border-top: 1px solid rgb(from var(--color-white) r g b / 0.06);
  overflow: hidden;
  padding: 150px 0;
  position: relative;
  text-align: center;
}

@media (max-width: 767px) {
.closing {
  padding: 96px 0;
}
}
.closing-text {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 19px;
  margin-bottom: 38px;
}
.closing-title {
  font-size: 80px;
  line-height: 1.02;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
.closing-title {
  font-size: 52px;
}
}

@media (max-width: 767px) {
.closing-title {
  font-size: 38px;
}
}

@media (max-width: 575px) {
.closing-title {
  font-size: 32px;
}
}
.contact-form-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
}

@media (max-width: 767px) {
.contact-form-card {
  padding: 30px;
}
}
.contact-ic {
  align-items: center;
  background: rgb(from var(--color-primary-bright) r g b / 0.12);
  border: 1px solid rgb(from var(--color-primary-bright) r g b / 0.3);
  border-radius: 12px;
  color: var(--color-accent);
  display: flex;
  flex: none;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.contact-ic svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-label {
  color: rgb(from var(--color-text) r g b / 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contact-row {
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  padding: 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-row:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.4);
  transform: translateY(-2px);
}
.contact-value {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.eyebrow {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgb(from var(--color-white) r g b / 0.05);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: 999px;
  color: rgb(from var(--color-text) r g b / 0.8);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
  padding: 8px 16px;
  text-transform: uppercase;
}
.eyebrow-dot {
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-accent);
  height: 8px;
  width: 8px;
}
.faq-body {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 15px;
  line-height: 1.65;
  padding: 0 28px 26px;
}
.faq-body p {
  margin: 0;
}
.faq-btn {
  margin: 0;
}
.faq-item {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
}
.feature-split {
  align-items: center;
}
.featured-body {
  padding: 48px;
}

@media (max-width: 767px) {
.featured-body {
  padding: 28px;
}
}
.featured-excerpt {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 26px;
}
.featured-flag {
  background: var(--color-accent);
  border-radius: 999px;
  color: var(--color-bg);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding: 6px 12px;
  text-transform: uppercase;
}
.featured-post {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 64px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.featured-post:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.5);
  box-shadow: 0 40px 90px rgb(0, 0, 0, 0.5);
}
.featured-shot {
  background: var(--color-surface);
  min-height: 100%;
  overflow: hidden;
}
.featured-shot img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.featured-title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
.featured-title {
  font-size: 28px;
}
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}
.filter-chip {
  background: rgb(from var(--color-white) r g b / 0.05);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: 999px;
  color: rgb(from var(--color-text) r g b / 0.7);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.filter-chip:hover {
  border-color: rgb(from var(--color-white) r g b / 0.3);
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid rgb(from var(--color-white) r g b / 0.08);
  color: rgb(from var(--color-text) r g b / 0.7);
  font-size: 13px;
  padding: 22px 0;
}
.footer-head {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links a {
  color: rgb(from var(--color-text) r g b / 0.8);
  font-size: 14px;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-logo {
  height: 26px;
  margin-bottom: 18px;
  width: auto;
}
.footer-text {
  color: rgb(from var(--color-text) r g b / 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 260px;
}
.footer-top {
  padding: 64px 0 36px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.form-field label {
  color: rgb(from var(--color-text) r g b / 0.8);
  font-size: 13px;
  font-weight: 600;
}
.form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
.form-grid {
  grid-template-columns: 1fr;
}
}
.form-input {
  background: rgb(from var(--color-white) r g b / 0.04);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background: rgb(from var(--color-white) r g b / 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315cdf2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  padding-right: 42px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-select option {
  background: var(--color-surface);
  color: var(--color-white);
}
.form-textarea {
  background: rgb(from var(--color-white) r g b / 0.04);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.gallery-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.5);
  box-shadow: 0 34px 70px rgb(0, 0, 0, 0.5);
  transform: translateY(-5px);
}
.gallery-cat {
  background: rgb(from var(--color-accent) r g b / 0.1);
  border: 1px solid rgb(from var(--color-accent) r g b / 0.3);
  border-radius: 999px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.gallery-empty {
  color: rgb(from var(--color-text) r g b / 0.55);
  display: none;
  font-size: 16px;
  padding: 40px 0;
  text-align: center;
}
.gallery-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 18px 22px;
}
.gallery-name {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
}
.gallery-overlay {
  align-items: center;
  backdrop-filter: blur(3px);
  background: rgb(from var(--color-bg) r g b / 0.55);
  display: flex;
  gap: 12px;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
}
.gallery-shot {
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  overflow: hidden;
  position: relative;
}
.gallery-shot img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.glass-chip {
  align-items: center;
  animation: floaty 6s ease-in-out infinite;
  backdrop-filter: blur(14px);
  background: rgb(from var(--color-card) r g b / 0.72);
  border: 1px solid rgb(from var(--color-white) r g b / 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgb(0, 0, 0, 0.5);
  display: flex;
  gap: 11px;
  padding: 13px 17px;
  position: absolute;
  z-index: 2;
}

@media (max-width: 575px) {
.glass-chip {
  display: none;
}
}
.grad-text {
  -webkit-background-clip: text;
  animation: sheen 6s linear infinite;
  background: linear-gradient(100deg, var(--color-primary-bright) 0%, var(--color-accent) 34%, var(--color-white) 50%, var(--color-accent) 66%, var(--color-primary-bright) 100%);
  background-clip: text;
  background-size: 220% 100%;
  color: transparent;
}
.grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.045;
  pointer-events: none;
  position: fixed;
  z-index: 60;
}
.guarantee {
  background: radial-gradient(600px circle at 12% 20%, rgb(from var(--color-primary-bright) r g b / 0.14), transparent 60%),
        var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  padding: 56px;
}

@media (max-width: 767px) {
.guarantee {
  padding: 36px;
}
}
.guarantee-badge {
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 20px;
  box-shadow: 0 16px 44px rgb(from var(--color-primary-bright) r g b / 0.45);
  color: var(--color-white);
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}
.guarantee-badge svg {
  fill: none;
  height: 36px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 36px;
}
.guarantee-strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.head-block {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
.head-block {
  margin-bottom: 44px;
}
}
.hero {
  background-image: linear-gradient(rgb(from var(--color-white) r g b / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(from var(--color-white) r g b / 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.06);
  overflow: hidden;
  padding: 110px 0 90px;
  position: relative;
}

@media (max-width: 991px) {
.hero {
  padding: 72px 0 64px;
}
}
.hero-actions {
  gap: 14px;
  margin-bottom: 26px;
}
.hero-bar {
  align-items: center;
  background: rgb(from var(--color-white) r g b / 0.03);
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.08);
  display: flex;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
}
.hero-bar i {
  background: rgb(from var(--color-white) r g b / 0.18);
  border-radius: 50%;
  height: 11px;
  width: 11px;
}
.hero-note {
  color: rgb(from var(--color-text) r g b / 0.65);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.hero-panel {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 50px 120px rgb(0, 0, 0, 0.6), 0 0 0 1px rgb(from var(--color-white) r g b / 0.04) inset;
  margin: 0 auto;
  max-width: 940px;
  overflow: hidden;
  position: relative;
  transform: rotateX(7deg);
  transform-origin: center top;
  z-index: 1;
}

@media (max-width: 991px) {
.hero-panel {
  transform: none;
}
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.hero-points li {
  align-items: center;
  color: rgb(from var(--color-text) r g b / 0.8);
  display: flex;
  font-size: 16px;
  gap: 13px;
}
.hero-shot {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
.hero-stage {
  margin-top: 72px;
  perspective: 1800px;
  position: relative;
}
.hero-text {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 20px;
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 520px;
}
.hero-title {
  font-size: 78px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
.hero-title {
  font-size: 54px;
}
}

@media (max-width: 767px) {
.hero-title {
  font-size: 42px;
}
}

@media (max-width: 575px) {
.hero-title {
  font-size: 36px;
}
}
.hero-url {
  align-items: center;
  background: rgb(from var(--color-white) r g b / 0.04);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: 7px;
  color: rgb(from var(--color-text) r g b / 0.5);
  display: flex;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  height: 26px;
  margin-left: 12px;
  padding: 0 12px;
}
.integrations {
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.06);
  padding: 56px 0;
}
.integrations-label {
  color: rgb(from var(--color-text) r g b / 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
.lead-heading {
  font-size: 24px;
  margin-bottom: 8px;
}
.lead-sub {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, transparent);
  overflow: hidden;
}
.marquee-track {
  align-items: center;
  animation: scroll-x 30s linear infinite;
  display: flex;
  gap: 64px;
  width: max-content;
}
.marquee-track span {
  color: rgb(from var(--color-text) r g b / 0.5);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-actions {
  gap: 18px;
}

@media (max-width: 991px) {
.nav-actions {
  flex-direction: column;
  align-items: flex-start !important;
}
}
.nav-login {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-login:hover {
  color: var(--color-accent);
}
.newsletter {
  background: radial-gradient(620px circle at 80% 20%, rgb(from var(--color-accent) r g b / 0.12), transparent 60%),
        var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}

@media (max-width: 767px) {
.newsletter {
  padding: 36px;
}
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 26px auto 0;
  max-width: 480px;
}

@media (max-width: 767px) {
.newsletter-form {
  flex-direction: column;
}
}
.num-badge {
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-bright));
  border-radius: 11px;
  box-shadow: 0 8px 24px rgb(from var(--color-primary-bright) r g b / 0.35);
  color: var(--color-white);
  display: flex;
  flex: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.num-body h4 {
  font-size: 17px;
  margin: 6px 0 5px;
}
.num-body p {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
}
.num-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}
.num-list li {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}
.page-btn {
  align-items: center;
  background: rgb(from var(--color-white) r g b / 0.05);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: var(--radius-sm);
  color: rgb(from var(--color-text) r g b / 0.7);
  cursor: pointer;
  display: flex;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0 14px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.page-btn:hover {
  border-color: rgb(from var(--color-white) r g b / 0.3);
  color: var(--color-white);
}
.page-hero {
  background-image: linear-gradient(rgb(from var(--color-white) r g b / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(from var(--color-white) r g b / 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.06);
  overflow: hidden;
  padding: 130px 0 96px;
  position: relative;
}
.page-text {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 20px;
  line-height: 1.55;
  margin: 0 auto 34px;
  max-width: 600px;
}
.page-title {
  font-size: 68px;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
.page-title {
  font-size: 48px;
}
}

@media (max-width: 767px) {
.page-title {
  font-size: 38px;
}
}

@media (max-width: 575px) {
.page-title {
  font-size: 32px;
}
}
.pagination-row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 64px;
}
.plan-check {
  align-items: center;
  background: rgb(from var(--color-accent) r g b / 0.12);
  border-radius: 50%;
  color: var(--color-accent);
  display: flex;
  flex: none;
  height: 20px;
  justify-content: center;
  margin-top: 1px;
  width: 20px;
}
.plan-check svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  width: 12px;
}
.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.plan-list li {
  align-items: flex-start;
  color: rgb(from var(--color-text) r g b / 0.82);
  display: flex;
  font-size: 15px;
  gap: 11px;
}
.plan-sub {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 4px 0 16px;
}
.point-check {
  align-items: center;
  background: rgb(from var(--color-accent) r g b / 0.12);
  border-radius: 50%;
  color: var(--color-accent);
  display: flex;
  flex: none;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.point-check svg {
  fill: none;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  width: 13px;
}
.post-body {
  padding: 24px;
}
.post-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.5);
  box-shadow: 0 30px 60px rgb(0, 0, 0, 0.45);
  transform: translateY(-5px);
}
.post-cat {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.post-excerpt {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.post-meta {
  color: rgb(from var(--color-text) r g b / 0.5);
  font-size: 13px;
}
.post-shot {
  aspect-ratio: 16 / 10;
  background: var(--color-surface);
  overflow: hidden;
}
.post-shot img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.post-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}
.price-amount {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  margin: 16px 0 6px;
}
.price-amount span {
  color: rgb(from var(--color-text) r g b / 0.5);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}
.price-badge {
  background: var(--color-accent);
  border-radius: 999px;
  color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  position: absolute;
  right: 26px;
  text-transform: uppercase;
  top: -14px;
}
.price-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  padding: 34px;
}
.price-divider {
  background: rgb(from var(--color-white) r g b / 0.1);
  height: 1px;
  margin: 0 0 22px;
}
.price-name {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}
.price-period {
  color: rgb(from var(--color-text) r g b / 0.5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.price-text {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 14px;
  margin-bottom: 26px;
}
.quote-avatar {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  height: 46px;
  width: 46px;
}
.quote-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  padding: 34px;
}
.quote-name {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
}
.quote-role {
  color: rgb(from var(--color-text) r g b / 0.75);
  font-size: 13px;
}
.quote-text {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.section-lead {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}
.section-pad {
  padding: var(--section-py) 0;
  position: relative;
}

@media (max-width: 767px) {
.section-pad {
  padding: 76px 0;
}
}
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgb(from var(--color-white) r g b / 0.07);
}
.site-menu {
  gap: 16px;
}

@media (min-width: 1200px) {
.site-menu {
  gap: 28px;
}
}

@media (max-width: 991px) {
.site-menu {
  padding: 16px;
}
}
.site-nav {
  backdrop-filter: blur(16px);
  background: rgb(from var(--color-bg) r g b / 0.72);
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.07);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.split-media-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgb(0, 0, 0, 0.5);
  overflow: hidden;
}
.split-media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.spotlight-body {
  padding: 56px;
}

@media (max-width: 991px) {
.spotlight-body {
  padding: 40px;
}
}

@media (max-width: 575px) {
.spotlight-body {
  padding: 30px;
}
}
.spotlight-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.spotlight-img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 991px) {
.spotlight-img {
  min-height: 280px;
}
}
.spotlight-text {
  color: rgb(from var(--color-text) r g b / 0.66);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 30px;
}
.stat-card {
  text-align: center;
}
.stat-label {
  color: rgb(from var(--color-text) r g b / 0.55);
  font-size: 15px;
  margin: 14px 0 0;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (max-width: 991px) {
.stat-num {
  font-size: 60px;
}
}

@media (max-width: 767px) {
.stat-num {
  font-size: 54px;
}
}
.step-card {
  background: var(--color-surface);
  border: 1px solid rgb(from var(--color-white) r g b / 0.07);
  border-radius: var(--radius-md);
  height: 100%;
  padding: 34px;
}
.step-num {
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-bright));
  border-radius: 13px;
  box-shadow: 0 10px 30px rgb(from var(--color-primary-bright) r g b / 0.4);
  color: var(--color-white);
  display: flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}
.step-text {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.step-title {
  margin-bottom: 10px;
}
.tag-pill {
  background: rgb(from var(--color-white) r g b / 0.05);
  border: 1px solid rgb(from var(--color-white) r g b / 0.12);
  border-radius: 999px;
  color: rgb(from var(--color-text) r g b / 0.72);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
}
.tag-pill:hover {
  border-color: rgb(from var(--color-white) r g b / 0.3);
  color: var(--color-white);
}
.template-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  margin: 0 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.template-card:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.5);
}
.template-img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}
.template-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}
.template-name {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}
.template-tag {
  background: rgb(from var(--color-accent) r g b / 0.1);
  border: 1px solid rgb(from var(--color-accent) r g b / 0.3);
  border-radius: 999px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
}
.templates {
  background: var(--color-surface);
  border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.06);
  border-top: 1px solid rgb(from var(--color-white) r g b / 0.06);
}
.templates-head {
  gap: 24px;
  margin-bottom: 50px;
}
.templates-slider-dot {
  background: rgb(from var(--color-white) r g b / 0.3);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 10px;
}
.templates-slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 38px;
}
.templates-slider-slide {
  flex: 0 0 calc(100% / var(--slides-to-show, 3));
  min-width: 0;
}
.templates-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.templates-slider-viewport {
  overflow: hidden;
}
.value-card {
  background: var(--color-card);
  border: 1px solid rgb(from var(--color-white) r g b / 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  border-color: rgb(from var(--color-accent) r g b / 0.4);
  box-shadow: 0 30px 60px rgb(0, 0, 0, 0.45);
  transform: translateY(-4px);
}
.value-ic {
  align-items: center;
  background: rgb(from var(--color-primary-bright) r g b / 0.12);
  border: 1px solid rgb(from var(--color-primary-bright) r g b / 0.3);
  border-radius: 14px;
  color: var(--color-accent);
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}
.value-ic svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 26px;
}
.value-text {
  color: rgb(from var(--color-text) r g b / 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.value-title {
  font-size: 19px;
  margin-bottom: 10px;
}
.templates-nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.templates-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  width: 74px;
}
.templates-arrow svg {
  height: 16px;
  width: 48px;
}
.templates-arrow:hover {
  background: rgb(from var(--color-accent) r g b / 0.08);
  border-color: rgb(from var(--color-accent) r g b / 0.5);
  color: var(--color-accent);
}
.blog-content {
  max-width: 760px;
  margin: 0 auto;
}
.quotes blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-card);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.45;
  color: var(--color-white);
}
.content-section {
  padding: var(--section-py) 0;
}
.content-section ol {
  padding-left: 32px;
  margin-bottom: 20px;
}
.content-section h2 {
  font-size: 42px;
}
.powered-by-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-underline-offset: 3px;
  font-size: 15px;
  text-decoration: underline;
  font-weight: 600;
}
.powered-by-link div {
  height: 26px;
  width: 26px;
}