@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=JetBrains+Mono:wght@400;600;700&display=swap");
html:not(.i18n-ready) [data-i18n] {
  opacity: 0;
  visibility: hidden;
}
html:not(.i18n-ready) {
  animation: showContentFallback 1s forwards;
}

@keyframes showContentFallback {
  0% {
  }
  99% {
  }
  100% {
  }
}
html:not(.i18n-ready) [data-i18n] {
  animation: forceVisible 1s forwards;
}
@keyframes forceVisible {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
html {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
:lang(ja),
:lang(zh) {
  word-break: break-all;
  hyphens: none;
}
:lang(hi) {
  hyphens: none;
}
.lang-checkmark {
  display: none;
  margin-left: 8px;
}
.lang-option.active .lang-checkmark {
  display: inline;
}
body,
body * {
  transition: none;
}
html.theme-transition body,
html.theme-transition body * {
  transition:
    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-property: background-color, color !important;
}
body.theme-transition,
body.theme-transition * {
  transition:
    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-property: background-color, color !important;
}
.theme-checkmark {
  display: none;
  margin-left: 8px;
}
.theme-option.active .theme-checkmark {
  display: inline;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}
*:focus,
*:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a,
button,
input,
select,
textarea {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.footer-logo-giant,
.legal-bar-giant {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.material-icons.huge,
.step-number {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray: #666666;
  --border-color: #f2f2f2;
  --border: 1rem solid var(--border-color);
  --section-padding: clamp(80px, 12vh, 140px);
  --content-padding: 4vw;
}
html.dark-mode,
body.dark-mode {
  --black: #ffffff;
  --white: #0a0a0a;
  --off-white: #1a1a1a;
  --gray: #999999;
  --border-color: #1a1a1a;
  --border: 1rem solid var(--border-color);
  --section-padding: clamp(80px, 12vh, 140px);
  --content-padding: 4vw;
}
html.light-mode,
body.light-mode {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray: #666666;
  --border-color: #f2f2f2;
  --border: 1rem solid var(--border-color);
  --section-padding: clamp(80px, 12vh, 140px);
  --content-padding: 4vw;
}
body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-base);
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body,
body * {
  max-width: 100%;
  word-wrap: auto;
  overflow-wrap: auto;
  word-break: auto;
}
form,
.form,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
.input-field,
.form-field,
.form-group {
  width: 100%;
  min-width: 500px;
}
@media (max-width: 768px) {
  form,
  .form,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  textarea,
  .input-field,
  .form-field,
  .form-group {
    min-width: auto;
  }
}
img,
video,
embed,
iframe,
object {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  max-width: 100%;
  overflow-x: auto;
}
code,
pre {
  overflow-x: auto;
  word-break: break-all;
}
.mono {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px var(--content-padding);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  column-gap: 20px;
  min-height: 60px;
}
.logo {
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  grid-column: 1;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  grid-column: 3;
  justify-self: end;
}
.desktop-nav {
  display: none;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  grid-column: 2;
  justify-self: center;
}
.desktop-nav-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}
.desktop-nav-link:hover {
  background-color: var(--off-white);
  color: var(--black);
}
.header-btn {
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  padding: 14px 32px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 1;
  display: none;
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 20px;
  cursor: pointer;
  z-index: 201;
}
.burger-menu span {
  display: block;
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.66px, 5.66px);
}
.burger-menu.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5.66px, -5.66px);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  padding: 120px var(--content-padding) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: scale(1.04);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  z-index: 200;
}
.mobile-nav.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  font-size: 32px;
  font-weight: 900;
  text-decoration: none;
  color: var(--black);
  padding: 16px 0;
  line-height: 1.1;
}
.mobile-link,
.mobile-cta {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    filter 0.6s ease;
}
.mobile-nav.active .mobile-link,
.mobile-nav.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.mobile-nav.active .mobile-link:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-nav.active .mobile-link:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-nav.active .mobile-link:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-nav.active .mobile-link:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-link:nth-child(5) {
  transition-delay: 0.25s;
}
.mobile-nav.active .mobile-link:nth-child(6) {
  transition-delay: 0.3s;
}
.mobile-nav.active .mobile-cta {
  transition-delay: 0.4s;
}
.mobile-cta {
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  padding: 18px 36px;
  border-radius: 100px;
  text-align: center;
  margin-top: 30px;
  line-height: 1;
  width: fit-content;
}
.hero {
  padding: clamp(80px, 15vh, 200px) var(--content-padding);
  border-bottom: var(--border);
  background: var(--white);
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.hero::before {
  display: none;
}
.hero h1 {
  color: var(--black);
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 900;
  line-height: 1.1;
  word-wrap: break-word;
  max-width: 90%;
  overflow-wrap: break-word;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2vh, 24px);
  hyphens: auto;
}
.hero-description {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--gray);
  line-height: 1.6;
  max-width: 80%;
  margin-bottom: clamp(24px, 4vh, 48px);
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: clamp(24px, 3vh, 40px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.about-mini {
  padding: var(--section-padding) var(--content-padding);
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--off-white);
}
.about-mini p {
  grid-column: 1 / -1;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  max-width: 1200px;
  color: var(--black);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.grid-item {
  padding: clamp(60px, 10vh, 120px) var(--content-padding);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 65vh;
}
.grid-item:nth-child(odd) {
  border-right: var(--border);
}
.process-item {
  position: relative;
}
.material-icons.huge {
  color: var(--black);
  background: var(--off-white);
  border-radius: 24px;
  padding: 24px;
  font-size: clamp(80px, 7vw, 120px);
  margin-bottom: 32px;
  line-height: 1;
}
.step-number {
  font-size: clamp(100px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--gray);
  opacity: 0.25;
  margin-bottom: 32px;
}
.item-title {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--black);
}
.item-desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 380px;
  color: var(--black);
  font-family: "JetBrains Mono", monospace;
}
.grid-item.layout-1 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.grid-item.layout-1 .material-icons.huge {
  order: -1;
  margin-bottom: 32px;
}
.grid-item.layout-1 .step-number {
  order: -1;
}
.grid-item.layout-2 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.grid-item.layout-2 .step-number {
  order: 0;
}
.grid-item.layout-2 .item-title {
  order: 1;
}
.grid-item.layout-2 .item-desc {
  order: 2;
}
.grid-item.layout-2 .item-buttons {
  order: 3;
}
.grid-item.layout-2 .material-icons.huge {
  order: 4;
  margin-bottom: 0;
  margin-top: 32px;
}
.item-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-read-more,
.btn-ask-us {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.btn-read-more {
  background: var(--black);
  color: var(--white);
}
.btn-ask-us {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.contact-trigger {
  width: 100%;
  padding: clamp(100px, 15vh, 200px) var(--content-padding);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 900;
  transition: background 0.4s ease;
  line-height: 1;
  border-bottom: var(--border);
}
footer {
  padding: var(--section-padding) var(--content-padding) 40px;
  width: 100%;
  background: var(--white);
}
.footer-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 80px;
  border-top: var(--border);
}
.accordion-item {
  border-bottom: var(--border);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  text-align: left;
  transition: opacity 0.3s ease;
}
.accordion-icon {
  font-size: 32px;
  transition: transform 0.3s ease;
  color: var(--black);
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0;
}
.accordion-item.active .accordion-content {
  max-height: fit-content;
  padding-bottom: 28px;
}
.show-phone-btn {
  background: none;
  border: none;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.contact-email {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.accordion-content p,
.accordion-content a {
  font-size: 15px;
  display: block;
  text-decoration: none;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  overflow: visible;
}
.legal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.legal-item a:first-child {
  margin-bottom: 0;
}
.download-links {
  display: flex;
  gap: 8px;
}
.download-links a {
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--gray);
  border-radius: 8px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 0;
  background: transparent;
  transition: all 0.3s ease;
}
.download-links a:hover {
  color: var(--gray);
  border-color: var(--gray);
  background: transparent;
}
.footer-big-elements {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-giant {
  font-size: clamp(120px, 22vw, 360px);
  font-weight: 900;
  line-height: 0.9;
  margin-left: -0.04em;
  color: var(--black);
}
html.dark-mode .footer-logo-giant,
body.dark-mode .footer-logo-giant {
  color: var(--black);
}
html.light-mode .footer-logo-giant,
body.light-mode .footer-logo-giant {
  color: var(--black);
}
.legal-bar-giant {
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  margin-top: 24px;
  line-height: 0.9;
  color: var(--black);
}
body.dark-mode {
  --black: #ffffff;
  --white: #0a0a0a;
  --off-white: #1a1a1a;
  --gray: #999999;
  --border-color: #1a1a1a;
}
body.light-mode {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray: #666666;
  --border-color: #f2f2f2;
}
.info-box {
  background: var(--off-white);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
}
.info-box h3 {
  margin-top: 0;
}
.info-box p {
  margin-bottom: 12px;
}
.info-box p:last-child {
  margin-bottom: 0;
}
.highlight-box {
  background: var(--off-white);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  border-left: 0px solid var(--black);
}
.consultation {
  padding: 0;
  background: var(--white);
}
.consultation-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.consultation-tile {
  padding: clamp(60px, 10vh, 120px) var(--content-padding);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 65vh;
}
.consultation-tile:nth-child(odd) {
  border-right: var(--border);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.grid-item {
  padding: clamp(60px, 10vh, 120px) var(--content-padding);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 65vh;
}
.grid-item:nth-child(odd) {
  border-right: var(--border);
}
.consultation-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consultation-left h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--black);
}
.consultation-copy {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 380px;
  color: var(--black);
  margin-bottom: 6px;
  font-family: "JetBrains Mono", monospace;
}
.consultation-meta {
  display: none;
}
.meta-pill {
  display: none;
}
.meta-divider {
  display: none;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}
.badge {
  display: none;
}
.consultation-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.consultation-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.consultation-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.price-amount {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.price-caption {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  font-family: "JetBrains Mono", monospace;
}
.consultation-guarantee {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
  max-width: 380px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
}
.consultation .btn-primary,
.consultation .consultation-cta {
  width: auto;
  text-align: center;
  background: var(--black);
  color: var(--white);
  box-shadow: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  margin-top: 8px;
}
.consultation-legal {
  display: block;
  margin-top: 16px;
}
.consultation-terms-link {
  background: none;
  border: none;
  color: var(--black);
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  display: inline;
}
.consultation-agree {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  text-align: center;
}
.consultation-cta:disabled:hover {
  background-color: var(--black);
}
.consultation-disclaimer {
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
  text-align: center;
  line-height: 1.4;
}
.consultation-disclaimer-link {
  background: none;
  border: none;
  color: var(--black);
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  display: inline;
  margin-left: 2px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--border-color);
  box-shadow: none;
  gap: 6px;
}
.pill-icon::before {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  width: 16px;
  text-align: center;
  opacity: 0.85;
  content: "";
}
.pill-apple::before {
  content: "";
  font-family: "Arial", sans-serif;
}
@media (max-width: 768px) {
  .consultation-inner {
    grid-template-columns: 1fr;
  }
  .consultation-tile {
    padding: clamp(40px, 8vh, 80px) var(--content-padding);
    min-height: auto;
  }
  .consultation-tile:nth-child(odd) {
    border-right: none;
  }
}
.stripe-button stripe-buy-button {
  width: 100%;
}
.stripe-button {
  width: 100%;
}
.stripe-button-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .modal-body {
    padding: 80px 6vw 60px;
  }
  .modal-body h1 {
    font-size: 40px;
  }
  .modal-close {
    width: 56px;
    height: 56px;
    top: 16px;
    right: 16px;
  }
  .modal-close .material-icons {
    font-size: 28px;
  }
  .info-box,
  .highlight-box {
    padding: 24px;
  }
}
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .desktop-btn {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .header-right {
    gap: 15px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-item:nth-child(odd) {
    border-right: none;
  }
  .about-mini {
    grid-template-columns: 1fr;
  }
  .material-icons.huge {
    font-size: 90px;
  }
}
@media (min-width: 769px) and (min-width: 1200px) {
  .desktop-nav {
    display: flex;
  }
  .header-btn {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  header {
    grid-template-columns: auto auto;
  }
  .desktop-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
}
