@charset "UTF-8";
:root {
  --bg: #0a1628;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.10);
  --border: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent: #10b981;
  --accent-2: #f59e0b;
  --success: #22c55e;
  --warning: #eab308;
  --orange: #f97316;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-width: 1120px;
  --transition: 0.2s ease;
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
button,
blockquote,
hr {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  color: var(--accent);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-2);
}

picture {
  display: inline-block;
}

li {
  list-style: none;
}

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

button {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: unset;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100%;
  font-family: "Rubik", sans-serif;
  margin: 0;
  line-height: 1;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
  min-width: 0;
  min-height: 0;
  position: relative;
  z-index: 2;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
  min-height: 0;
}
#wrapper header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#wrapper main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
#wrapper footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.text *:not(img, ul, ol, li, blockquote, span, strong, iframe, a, br, th, td, tr, thead, tbody) {
  margin-bottom: 16px;
}
.text > ul,
.text > ol,
.text > img,
.text > iframe,
.text > table,
.text > blockquote {
  margin-bottom: 16px;
}
.text *:last-child {
  margin-bottom: 0;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-top: 40px;
}
.text h1 {
  font-size: clamp(28px, 5vw, 40px);
}
.text h2 {
  font-size: 22px;
}
.text h3,
.text h4,
.text h5,
.text h6 {
  font-size: 18px;
}
.text a {
  color: var(--accent) !important;
  text-decoration: underline !important;
}
.text blockquote {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.text img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.text .alignleft {
  float: left;
}
.text .alignright {
  float: right;
}
.text .aligncenter {
  margin: 0 auto;
}
.text iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.text ul li {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.text ul li:not(:first-child) {
  margin-top: 6px;
}
.text ul li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-muted);
}
.text ul li ol {
  counter-reset: numUl;
}
.text ul li ol li {
  padding-left: 0;
}
.text ul li ol li::after {
  display: none;
}
.text ul li ol li::before {
  counter-increment: numUl;
  content: counters(numUl, ".") ".";
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.text ol {
  counter-reset: numOl;
}
.text ol li:has(> strong:first-child)::before {
  font-weight: 700;
}
.text ol li::before {
  counter-increment: numOl;
  content: counters(numOl, ".") ".";
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.text ol li ol {
  padding-left: 20px;
}
.text ol li ul {
  padding-left: 20px;
}
.text ol li ul li {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.text ol li ul li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-muted);
}
.text ol li ul li::before {
  display: none;
}
.text .table-block {
  overflow: auto;
}
.text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.text table th,
.text table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
}
.text table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
}
.text table td {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .text h1,
  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text h6 {
    margin-top: 25px;
  }
  .text blockquote {
    padding: 20px;
    margin-bottom: 25px;
  }
  .text .alignleft,
  .text .alignright,
  .text .aligncenter {
    float: none;
    margin: 0 auto;
  }
  .text ul li {
    padding-left: 15px;
  }
  .text ol li ol {
    padding-left: 15px;
  }
  .text ol li ul {
    padding-left: 15px;
  }
  .text ol li ul li {
    padding-left: 15px;
  }
  .text table {
    font-size: 13px;
  }
  .text table th,
  .text table td {
    padding: 8px 10px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 42, 43, 0.8);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.modal.visible {
  opacity: 1;
  pointer-events: all;
}
.modal.visible .modal-dialog .modal-content {
  opacity: 1;
}
.modal.video-modal .modal-dialog .modal-content {
  background-color: #000;
}
.modal .modal-dialog {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .modal-dialog.content {
  display: block;
}
.modal .modal-dialog.content .modal-content {
  margin: 0 auto;
}
.modal .modal-dialog .modal-content {
  width: 100%;
  max-width: 1204px;
  min-height: 676px;
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  z-index: 2;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0;
}
.modal .modal-dialog .modal-content .modal-close {
  width: 22px;
  height: 22px;
  position: absolute;
  z-index: 3;
  left: calc(100% + 12px);
  bottom: calc(100% - 5px);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .modal-dialog .modal-content .modal-close::before, .modal .modal-dialog .modal-content .modal-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal .modal-dialog .modal-content .modal-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal .modal-dialog .modal-video {
  width: 100%;
  height: 676px;
  border-radius: 12px;
  overflow: hidden;
}
.modal .modal-dialog .modal-video #modal-video-iframe {
  width: 100%;
  height: 100%;
}
.modal .modal-dialog .modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal .modal-dialog .modal-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .modal .modal-dialog .modal-content .modal-close {
    left: auto;
    right: 0;
    bottom: calc(100% + 5px);
  }
}
@media screen and (max-width: 991px) {
  .modal .modal-dialog .modal-content {
    min-height: 250px;
  }
  .modal .modal-dialog .modal-video {
    height: 50.4541vw;
    min-height: 250px;
  }
}
.notification {
  position: fixed;
  z-index: 8;
  right: 30px;
  bottom: 30px;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FFE4C7;
  width: 100%;
  max-width: 450px;
  padding: 20px 20px 16px;
  border-radius: 10px 10px 0 0;
  border-bottom: 4px solid #F7A41D;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.notification.show {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.notification .notification-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.notification .notification-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.notification .notification-text {
  margin: 0 15px;
  font-weight: 700;
  color: #2C3E31;
  font-size: 14px;
  text-align: center;
}
.notification .notification-button {
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.notification .notification-button svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media screen and (max-width: 991px) {
  .notification {
    right: 50%;
    bottom: 10px;
    max-width: 280px;
    padding: 10px 15px 8px;
    border-bottom: 2px solid #F7A41D;
    -webkit-transform: translateX(50%) translateY(100%);
            transform: translateX(50%) translateY(100%);
  }
  .notification.show {
    -webkit-transform: translateX(50%) translateY(0);
            transform: translateX(50%) translateY(0);
  }
  .notification .notification-icon {
    width: 15px;
    height: 15px;
  }
  .notification .notification-icon svg {
    width: 15px;
    height: 15px;
  }
  .notification .notification-text {
    width: 100%;
    max-width: 200px;
    margin: 0 5px;
    font-size: 12px;
  }
  .notification .notification-button {
    width: 15px;
    height: 15px;
  }
  .notification .notification-button svg {
    width: 15px;
    height: 15px;
  }
}
form[data-status=submitting] {
  position: relative;
  z-index: 4;
}
form[data-status=submitting]::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(50% - 3.125rem);
  left: 50%;
  width: 2.8125rem;
  height: 2.8125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cg clip-path='url(%23a)'%3E%3Cmask id='b' width='20' height='20' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M20 0H0v20h20z'/%3E%3C/mask%3E%3Cg mask='url(%23b)'%3E%3Cmask id='c' width='20' height='20' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/mask%3E%3Cg mask='url(%23c)'%3E%3Cpath fill='%232a3f58' d='M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20m0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16'/%3E%3Cpath fill='%23fff' d='M18 10h2A10 10 0 0 0 10 0v2a8 8 0 0 1 8 8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  will-change: transform;
}
form[data-status=submitting] .form-fields {
  opacity: 0.5;
  pointer-events: none;
}
form .hide-field {
  display: none !important;
}
form .form-fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  direction: rtl;
}
form .input-field {
  width: 100%;
}
form .input-field input.wpcf7-form-control {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #001C30;
  outline: none;
  border-radius: 1.625rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
  text-align: center;
}
form .input-field input.wpcf7-form-control::-webkit-input-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control::-moz-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control:-ms-input-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control::-ms-input-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control::placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control:-moz-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field input.wpcf7-form-control::-moz-placeholder {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.25rem;
  color: #001C30;
}
form .input-field .wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
}
form .checkbox-field {
  position: relative;
  z-index: 2;
  margin-top: 0.5rem;
}
form .checkbox-field .wpcf7-list-item {
  margin: 0;
  padding: 0;
}
form .checkbox-field input[type=checkbox] {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
form .checkbox-field input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' data-name='Компонент 5 – 1' viewBox='0 0 21 21'%3E%3Cg fill='none' stroke='%23001c30' data-name='Эллипс 1'%3E%3Ccircle cx='10.5' cy='10.5' r='10.5' stroke='none'/%3E%3Ccircle cx='10.5' cy='10.5' r='10'/%3E%3C/g%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%23fff' data-name='Эллипс 2' transform='translate(2 2)'/%3E%3Cpath fill='none' stroke='%23001c30' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6.8 12.2 9 15.4l5.6-8.2' data-name='Контур 19'/%3E%3C/svg%3E");
}
form .checkbox-field .wpcf7-not-valid {
  border: none !important;
}
form .checkbox-field .wpcf7-not-valid .wpcf7-list-item-label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' data-name='Компонент 5 – 1' viewBox='0 0 21 21'%3E%3Cg fill='none' stroke='red' data-name='Эллипс 1'%3E%3Ccircle cx='10.5' cy='10.5' r='10.5' stroke='none'/%3E%3Ccircle cx='10.5' cy='10.5' r='10'/%3E%3C/g%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%23fff' data-name='Эллипс 2' transform='translate(2 2)'/%3E%3C/svg%3E");
}
form .checkbox-field .wpcf7-list-item-label {
  display: block;
  padding-right: 1.75rem;
  position: relative;
  font-weight: 400;
  line-height: 1.14;
  font-size: 0.875rem;
  color: #fff;
  text-align: right;
}
form .checkbox-field .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  right: 0px;
  width: 1.3125rem;
  height: 1.3125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' data-name='Компонент 5 – 1' viewBox='0 0 21 21'%3E%3Cg fill='none' stroke='%23001c30' data-name='Эллипс 1'%3E%3Ccircle cx='10.5' cy='10.5' r='10.5' stroke='none'/%3E%3Ccircle cx='10.5' cy='10.5' r='10'/%3E%3C/g%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%23fff' data-name='Эллипс 2' transform='translate(2 2)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
form .checkbox-field .wpcf7-list-item-label a {
  position: relative;
  z-index: 3;
  color: inherit;
  text-decoration: underline;
}
form .button-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.6875rem;
}
form .button-field button {
  width: 100%;
  height: 2.5rem;
  border-radius: 1.625rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 0.3125rem 3.125rem 0.3125rem 5.125rem;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2A3F58;
  position: relative;
  z-index: 2;
}
form .button-field button span:not(.is-shape) {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
form .button-field button span:not(.is-shape)::before, form .button-field button span:not(.is-shape)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0%;
  height: 0.0625rem;
  background-color: #2A3F58;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
form .button-field button span:not(.is-shape)::before {
  top: 0.0625rem;
}
form .button-field button span:not(.is-shape)::after {
  bottom: 0.0625rem;
}
form .button-field button:hover span:not(.is-shape) {
  text-shadow: -0.08125rem 0 0 #2a3f58;
}
form .button-field button:hover span:not(.is-shape)::before, form .button-field button:hover span:not(.is-shape)::after {
  width: 100%;
}
form .button-field button:hover .is-shape::after {
  left: 0.625rem;
}
form .button-field button:hover .is-shape::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
form .button-field button .is-shape {
  width: 3.25rem;
  height: 1.6875rem;
  position: absolute;
  z-index: -1;
  top: 0.25rem;
  left: 0.25rem;
  overflow: hidden;
}
form .button-field button .is-shape::after {
  content: "";
  position: absolute;
  left: 0.8125rem;
  bottom: -0.0625rem;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: rotate(-136deg);
          transform: rotate(-136deg);
  background-color: #2A3F58;
  border-radius: 80% 0 55% 50%/55% 0 80% 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
form .button-field button .is-shape::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.625rem;
  right: 0.5625rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #2A3F58;
  outline: 0.75rem solid #fff;
  -webkit-transform: translateX(calc(100% + 0.625rem));
          transform: translateX(calc(100% + 0.625rem));
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media only screen and (max-width: 768px) {
  form[data-status=submitting]::before {
    top: calc(50% - 3.125rem);
    width: 2.8125rem;
    height: 2.8125rem;
  }
  form .form-fields {
    grid-gap: 0.5rem;
  }
  form .input-field input.wpcf7-form-control {
    height: 2.5rem;
    border-radius: 1.625rem;
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control::-webkit-input-placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control::-moz-placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control:-ms-input-placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control::-ms-input-placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control::placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control:-moz-placeholder {
    font-size: 1.25rem;
  }
  form .input-field input.wpcf7-form-control::-moz-placeholder {
    font-size: 1.25rem;
  }
  form .checkbox-field {
    margin-top: 0.5rem;
  }
  form .checkbox-field .wpcf7-list-item-label {
    padding-right: 1.75rem;
    font-size: 0.875rem;
  }
  form .checkbox-field .wpcf7-list-item-label::before {
    top: 0.3125rem;
    width: 1.3125rem;
    height: 1.3125rem;
  }
  form .button-field {
    margin-top: 0.6875rem;
  }
  form .button-field button {
    height: 2.5rem;
    border-radius: 1.625rem;
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
            box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
    padding: 0.3125rem 3.125rem 0.3125rem 5.125rem;
    font-size: 1.25rem;
  }
  form .button-field button .is-shape {
    width: 3.25rem;
    height: 1.6875rem;
    top: 0.25rem;
    left: 0.25rem;
  }
  form .button-field button .is-shape::after {
    left: 0.8125rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  form .button-field button .is-shape::before {
    top: 0.625rem;
    right: 0.5625rem;
    width: 0.75rem;
    height: 0.75rem;
    outline: 0.75rem solid #fff;
    -webkit-transform: translateX(calc(100% + 0.625rem));
            transform: translateX(calc(100% + 0.625rem));
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
html:has(#wpadminbar) {
  margin-top: var(--wp-admin--admin-bar--height) !important;
}
html:has(#wpadminbar) .nav {
  top: var(--wp-admin--admin-bar--height);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 22, 40, 0.9);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  -webkit-transition: background var(--transition), -webkit-box-shadow var(--transition);
  transition: background var(--transition), -webkit-box-shadow var(--transition);
  transition: background var(--transition), box-shadow var(--transition);
  transition: background var(--transition), box-shadow var(--transition), -webkit-box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
}

.nav-logo:hover {
  color: var(--text);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.nav-logo span {
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}

.nav-cta:hover {
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.nav-burger {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  -webkit-transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: transform var(--transition), opacity var(--transition);
  transition: transform var(--transition), opacity var(--transition), -webkit-transform var(--transition);
}

.nav-burger span + span {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .nav {
    height: 60px;
  }
  .nav-inner {
    padding: 0 12px;
  }
  .nav-logo {
    gap: 6px;
  }
  .nav-logo-icon {
    width: 20px;
    height: 20px;
  }
  .nav-logo span {
    font-size: 12px;
  }
  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 18px;
    padding: 16px 24px 24px;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid var(--border);
    z-index: 1101;
  }
  .nav.nav-open .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav.nav-open .nav-burger span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .nav.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .nav.nav-open .nav-burger span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
  .nav-links li,
  .nav-links a {
    width: 100%;
  }
  .nav-cta {
    margin-left: auto;
  }
  .nav-links a {
    font-size: 16px;
  }
  .nav-cta {
    font-size: 10px;
    padding: 8px 14px;
    border-radius: 5px;
  }
}
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--surface);
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}

.hero-text {
  width: 100%;
  max-width: 525px;
}

.hero-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  -webkit-box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
          box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
}

.hero-cta:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
}

.hero-cta:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.trust-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.trust-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-badge svg {
  color: var(--success);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Hero blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(80px);
          filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  bottom: -50px;
  right: -50px;
}

/* Popup mockup */
.hero-mockup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}
.hero-mockup.is-download-icon::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -34px;
  right: -62px;
  width: 164px;
  height: 166px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='164' height='166' fill='none' viewBox='0 0 164 166'%3E%3Cg filter='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M81.775 155.55c42.954 0 77.775-34.821 77.775-77.775S124.729 0 81.775 0 4 34.821 4 77.775s34.821 77.775 77.775 77.775'/%3E%3Cpath fill='%230a1628' d='M81.775 147.183c38.333 0 69.408-31.075 69.408-69.408S120.108 8.367 81.775 8.367 12.367 39.442 12.367 77.775s31.075 69.408 69.408 69.408'/%3E%3Cpath fill='url(%23c)' d='M106.742 67.138H92.697V34.772c0-.959-.777-1.736-1.736-1.736H73.383c-.959 0-1.736.777-1.736 1.736v32.366H57.602c-1.396 0-2.123 1.663-1.175 2.687l11.629 12.568 12.941 13.986a1.6 1.6 0 0 0 2.349 0l12.941-13.986 11.629-12.568c.949-1.025.222-2.687-1.174-2.687'/%3E%3Cpath fill='url(%23d)' d='M113.471 119.031H50.41a1.2 1.2 0 0 1-1.202-1.202V99.655c0-.664.538-1.202 1.202-1.202h7.375c.664 0 1.202.538 1.202 1.202v8.395c0 .664.538 1.202 1.202 1.202h43.502c.664 0 1.202-.538 1.202-1.202v-8.739c0-.664.538-1.202 1.202-1.202h7.376c.664 0 1.202.538 1.202 1.202v18.519c0 .663-.538 1.201-1.202 1.201'/%3E%3Cpath fill='url(%23e)' d='M106.742 67.138H92.697V34.772c0-.959-.777-1.736-1.736-1.736h-8.735v63.851a1.6 1.6 0 0 0 1.121-.508l12.941-13.986 11.629-12.568c.948-1.025.221-2.687-1.175-2.687'/%3E%3Cpath fill='url(%23f)' d='M106.095 98.107c-.664 0-1.202.538-1.202 1.202v8.739c0 .664-.538 1.202-1.202 1.202H60.189a1.2 1.2 0 0 1-1.202-1.202v-8.395c0-.664-.538-1.202-1.202-1.202h-3.798v14.637c0 .607.458 1.098 1.023 1.098h53.67c.565 0 1.023-.492 1.023-1.098V98.107z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='4' x2='159.55' y1='77.775' y2='77.775' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2310b981'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='55.998' x2='108.345' y1='64.964' y2='64.964' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2310b981'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='49.208' x2='114.673' y1='108.57' y2='108.57' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2310b981'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' x1='82.226' x2='108.346' y1='64.962' y2='64.962' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2310b981'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='53.987' x2='109.703' y1='106.146' y2='106.146' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2310b981'/%3E%3Cstop offset='1' stop-color='%23f59e0b'/%3E%3C/linearGradient%3E%3Cfilter id='a' width='163.55' height='165.55' x='0' y='0' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' result='hardAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dy='6'/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix values='0 0 0 0 0.0627451 0 0 0 0 0.72549 0 0 0 0 0.505882 0 0 0 0.5 0'/%3E%3CfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_4_5789'/%3E%3CfeBlend in='SourceGraphic' in2='effect1_dropShadow_4_5789' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mockup-browser {
  width: 100%;
  background: #0d1f38;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-glow);
          box-shadow: var(--shadow-glow);
}

.mockup-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) {
  background: #ef4444;
}

.mockup-dot:nth-child(2) {
  background: #eab308;
}

.mockup-dot:nth-child(3) {
  background: #22c55e;
}

.mockup-url {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.mockup-popup {
  padding: 20px;
  background: #0a1628;
}

.mockup-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.mockup-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.mockup-toggle {
  width: 40px;
  height: 22px;
  background: var(--success);
  border-radius: 11px;
  position: relative;
}

.mockup-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  right: 3px;
}

.mockup-vu {
  height: 8px;
  background: var(--surface);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.mockup-vu-fill {
  height: 100%;
  width: 50%;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#22c55e), color-stop(40%, #22c55e), color-stop(60%, #eab308), color-stop(80%, #f97316), to(#ef4444));
  background: linear-gradient(90deg, #22c55e 0%, #22c55e 40%, #eab308 60%, #f97316 80%, #ef4444 100%);
  -webkit-transition: width 0.15s ease;
  transition: width 0.15s ease;
}

.mockup-level {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.mockup-level-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mockup-slider {
  width: 100%;
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  position: relative;
  margin-bottom: 20px;
}

.mockup-slider-track {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  width: 50%;
  -webkit-transition: width 0.15s ease;
  transition: width 0.15s ease;
}

.mockup-slider-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -webkit-transition: left 0.15s ease;
  transition: left 0.15s ease;
}

.mockup-presets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mockup-preset {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  -webkit-transition: all var(--transition);
  transition: all var(--transition);
}

.mockup-preset.active {
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 1330px) {
  .hero-mockup.is-download-icon::before {
    top: -40px;
    right: -20px;
    width: 111px;
    height: 111px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 106px 0 43px;
  }
  .hero h1 {
    margin-bottom: 5px;
  }
  .hero-subtitle {
    margin-bottom: 0;
  }
  .hero-inner {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 0 11px;
  }
  .hero-blob.hero-blob-2 {
    display: none;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    margin-top: 15px;
  }
  .trust-badges {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 15px;
    gap: 15px;
  }
  .hero-mockup {
    max-width: 265px;
  }
  .hero-mockup.is-download-icon::before {
    top: -20px;
    right: -38px;
    width: 105px;
    height: 105px;
  }
  .mockup-toolbar {
    gap: 4px;
    padding: 7px;
  }
  .mockup-dot {
    width: 6px;
    height: 6px;
  }
  .mockup-url {
    text-align: left;
    padding: 5px 7px;
    font-size: 8px;
  }
  .mockup-popup {
    padding: 7px 12px 12px;
  }
  .mockup-header {
    margin-bottom: 7px;
  }
  .mockup-title {
    font-size: 9px;
  }
  .mockup-vu {
    height: 5px;
    border-radius: 2px;
    margin-bottom: 10px;
  }
  .mockup-level {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .mockup-level-label {
    font-size: 7px;
    margin-bottom: 10px;
  }
  .mockup-slider {
    height: 5px;
    border-radius: 2px;
    margin-bottom: 10px;
  }
  .mockup-slider-thumb {
    width: 11px;
    height: 11px;
  }
  .mockup-vu-fill {
    border-radius: 2px;
  }
  .mockup-presets {
    gap: 7px;
  }
  .mockup-preset {
    font-size: 7px;
    padding: 4px 8px;
    border-radius: 3px;
  }
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  -webkit-transition: border-color var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: border-color var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}

.feature-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: var(--accent);
  -webkit-box-shadow: var(--shadow-glow);
          box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-transition: border-color var(--transition);
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--text-muted);
  -webkit-transition: color var(--transition), -webkit-transform var(--transition);
  transition: color var(--transition), -webkit-transform var(--transition);
  transition: transform var(--transition), color var(--transition);
  transition: transform var(--transition), color var(--transition), -webkit-transform var(--transition);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--accent);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  -webkit-box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
          box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
}

.cta-btn:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
}

.intro-section {
  padding: 40px 0 0;
}

.intro-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--border);
}

.step:last-child .step-connector {
  display: none;
}

@media (max-width: 768px) {
  .page-template-thank .section {
    padding: 0 0 35px;
  }
  .steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .step-connector {
    display: none;
  }
  .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.uninstall-page {
  padding-top: 64px;
}

.uninstall-hero {
  text-align: center;
  padding: 80px 24px 40px;
}

.uninstall-wave {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  -webkit-animation: wave 1.5s ease-in-out;
          animation: wave 1.5s ease-in-out;
}

@-webkit-keyframes wave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@keyframes wave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
.uninstall-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.uninstall-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 8px;
}

.reinstall-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 28px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}

.reinstall-btn:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.feedback-section {
  max-width: 560px;
  margin: 40px auto;
  padding: 0 24px;
  text-align: center;
}

.feedback-section h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.feedback-section > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reason-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.reason-btn {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  -webkit-transition: all var(--transition);
  transition: all var(--transition);
  text-align: left;
}

.reason-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.reason-btn.selected {
  border-color: var(--accent);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.feedback-note-text {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .reason-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.more-extensions {
  padding: 60px 24px;
  text-align: center;
}

.more-extensions h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.more-extensions > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.ext-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.ext-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-transition: border-color var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: border-color var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}

.ext-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: var(--accent);
  -webkit-box-shadow: var(--shadow-glow);
          box-shadow: var(--shadow-glow);
}

.ext-card-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--surface-hover);
}

.ext-card-body {
  padding: 20px;
}

.ext-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ext-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ext-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ext-card-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.ext-card-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.ext-card-btn:hover {
  color: var(--accent-2);
}

@media (max-width: 768px) {
  .ext-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.section-content .section-content__inner {
  padding: 140px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}
.section-content .section-content__title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-content .section-content__date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section-content .section-content__inner {
    padding: 120px 20px 60px;
  }
}
.contact-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 64px - 97px);
  padding: 140px 24px 80px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.contact-card h1 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-card > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.contact-email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}

.contact-email:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.contact-info {
  margin-top: 32px;
  text-align: left;
}

.contact-info h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.contact-info li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-response {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }
}
.section-error {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-error .section-error__blob {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(80px);
          filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.section-error .section-error__blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
}
.section-error .section-error__blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  bottom: -50px;
  right: -50px;
}
.section-error .section-error__content {
  max-width: 480px;
  margin: 0 auto;
}
.section-error .section-error__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-error .section-error__text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
}
.section-error .section-error__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-error .section-error__button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 8px;
  padding: 16px 32px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  -webkit-box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
          box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
}
.section-error .section-error__button a:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
}

@media (max-width: 768px) {
  .section-error .section-error__blob-1,
  .section-error .section-error__blob-2 {
    width: 250px;
    height: 250px;
  }
}
.section-thank {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-thank .section-thank__blob {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(80px);
          filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.section-thank .section-thank__blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
}
.section-thank .section-thank__blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  bottom: -50px;
  right: -50px;
}
.section-thank .section-thank__content {
  max-width: 480px;
  margin: 0 auto;
}
.section-thank .section-thank__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-thank .section-thank__text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
}
.section-thank .section-thank__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-thank .section-thank__button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 8px;
  padding: 16px 32px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--accent-2)));
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  -webkit-box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
          box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
}
.section-thank .section-thank__button a:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
          box-shadow: 0 0 16px rgba(16, 185, 129, 0.4), 0 8px 32px rgba(16, 185, 129, 0.35);
}

@media (max-width: 768px) {
  .section-thank .section-thank__blob-1,
  .section-thank .section-thank__blob-2 {
    width: 250px;
    height: 250px;
  }
}
.page-template-lp-extension main {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ── YouTube-like video area ── */
.yt-bg {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
}

/* Muted badge — top-left corner, subtle */
.muted-badge {
  position: fixed;
  top: 18px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.muted-badge .icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* ── YouTube player buffering: thin white arc (~75% of circle), flat, no glow ── */
.yt-buffer-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 5;
  pointer-events: none;
}

.yt-buffer-spinner__svg {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: ytBufferSpin 0.75s linear infinite;
          animation: ytBufferSpin 0.75s linear infinite;
}

.yt-buffer-spinner__arc {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
  stroke-linecap: butt;
  fill: none;
  /* C = 2πr ≈ 125.66; ~75% visible arc, ~25% gap */
  stroke-dasharray: 94.25 31.42;
}

@-webkit-keyframes ytBufferSpin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ytBufferSpin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ── iOS-style modal card ── */
.popup {
  position: fixed;
  z-index: 10;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 290px;
  background: #fff;
  border-radius: 14px;
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  -webkit-animation: popIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
          animation: popIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@-webkit-keyframes popIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.85);
            transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.85);
            transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.popup-body {
  padding: 20px 20px 16px;
}

.popup-title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.popup-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.popup-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.popup-action {
  padding: 14px 20px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  color: #007AFF;
  letter-spacing: -0.01em;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  cursor: pointer;
}

.popup-action:hover {
  background: rgba(0, 122, 255, 0.07);
}

/* ── Fake YouTube bottom bar ── */
.yt-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 0 16px 10px;
}

/* Progress bar */
.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 8px;
  position: relative;
}

.progress-fill {
  width: 12%;
  height: 100%;
  background: #ff0000;
  border-radius: 2px;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
}

/* Controls row */
.controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.controls svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  opacity: 0.9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.controls .time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

.controls .spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.controls svg.small {
  width: 18px;
  height: 18px;
}