:root {
  --color-heading: #0f172a;
  --color-text: #334155;
  --color-primary: #2563eb;
  --color-primary-hover: #0c3fb0;
  --color-blue-light: #eff6ff;
  --color-blue-deep: #dbeafe;
  --color-surface: #f8fafc;
  --container: 1312px;
  --container-narrow: 1120px;
  --page-padding: clamp(20px, 4.45vw, 64px);
  --section-padding: clamp(64px, 8vw, 112px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: clip;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0ms);
          transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 36px;
  border: 2px solid var(--color-primary);
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button-outline {
  background: transparent;
  color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .button:not(.button-outline):hover {
    border-color: var(--color-primary-hover);
    background-color: var(--color-primary-hover);
  }
  .button-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
}
.section-title {
  color: var(--color-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.section-blue {
  background: var(--color-blue-light);
}

.section-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .section-title {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.header.is-scrolled,
.header.is-menu-open {
  -webkit-box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
          box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

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

.logo {
  color: var(--color-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-nav a {
  padding: 10.8px 35px;
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-nav a:hover {
    color: var(--color-primary);
  }
}
.header-menu {
  position: relative;
  display: none;
  width: 36.8px;
  height: 31.2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.6px 8.4px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.header-menu:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-menu img,
.header-menu svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, transform 0.25s ease;
  transition: opacity 0.2s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.header-menu svg {
  color: var(--color-heading);
}

.header-menu-open {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.header-menu-close {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0 24px;
  }
  .header-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -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;
    padding: 12px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #fff;
    -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-12px) scale(0.98);
            transform: translateY(-12px) scale(0.98);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
  }
  .header-nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.4;
    white-space: normal;
  }
  .header-nav a:focus-visible {
    background: var(--color-blue-light);
    color: var(--color-primary);
  }
}
@media (max-width: 1023px) and (hover: hover) and (pointer: fine) {
  .header-nav a:hover {
    background: var(--color-blue-light);
  }
}
@media (max-width: 1023px) {
  .header.is-menu-open .header-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  .header.is-menu-open .header-menu-open {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
  }
  .header.is-menu-open .header-menu-close {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .header-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .logo {
    font-size: 16px;
    line-height: 1.2;
  }
}
.hero {
  position: relative;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: calc(clamp(72px, 8vw, 118px) + 48px);
  background-color: var(--color-blue-light);
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0.33), rgba(37, 99, 235, 0)), url("../images/content/hero.png");
  background-position: center top;
  background-size: cover;
}

.hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--page-padding));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.hero-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 865px);
  -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: clamp(32px, 3vw, 44px);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(229, 238, 250, 0.69);
  backdrop-filter: blur(7px);
}

.hero-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 71px;
}

.hero h1 {
  color: var(--color-heading);
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
}

.hero-copy p {
  width: 100%;
  max-width: 574px;
  color: var(--color-heading);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.4;
}

.hero-actions {
  margin-top: 0;
}

@media (min-width: 1550px) {
  .hero {
    background-position: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    padding: 65px 0 97px;
    background-position: center top;
  }
  .hero-inner {
    padding: 0 24px;
  }
  .hero-panel {
    width: min(100%, 469px);
    padding: 18px 20px 10px;
    border-radius: 32px;
  }
  .hero-copy {
    gap: 64px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .hero-copy p {
    width: 100%;
    max-width: 430px;
    font-size: 17px;
    line-height: 1.6;
  }
  .hero-actions {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: clamp(112px, 36vw, 168px) 0 68px;
    background-image: linear-gradient(98deg, rgba(255, 255, 255, 0.33), rgba(37, 99, 235, 0)), url("../images/content/hero.png");
    background-position: 17% top;
    background-size: auto 744px;
  }
  .hero-inner {
    padding-inline: 20px;
  }
  .hero-panel {
    width: 100%;
    gap: clamp(72px, 24vw, 112px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .hero-copy {
    width: 100%;
    gap: 24px;
    padding: 36px 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    background: rgba(229, 238, 250, 0.72);
    backdrop-filter: blur(7px);
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1;
  }
  .hero-copy p {
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
  }
  .hero-actions {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  .hero-actions .button {
    width: 100%;
  }
}
.about {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: calc(clamp(80px, 10.5vw, 150px) + 48px) var(--page-padding) clamp(80px, 10.5vw, 150px);
  border-radius: 48px 48px 0 0;
  background: var(--color-surface);
}

.about-inner {
  display: grid;
  width: 100%;
  max-width: 1140px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-content {
  padding: 10px;
}

.about-content h2 {
  max-width: 530px;
  color: var(--color-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.about-content p {
  max-width: 530px;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.6;
}

.about-picture {
  padding: 10px;
}

.about-picture img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 16px;
  -webkit-box-shadow: 8px 16px 18px rgba(37, 99, 235, 0.1);
          box-shadow: 8px 16px 18px rgba(37, 99, 235, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about {
    margin-top: -32px;
    padding: 92px 10px 60px;
    border-radius: 32px 32px 0 0;
  }
  .about-inner {
    max-width: 748px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .about-content h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  .about-content p {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .about {
    margin-top: -32px;
    padding: 72px 10px 50px;
    border-radius: 32px 32px 0 0;
  }
  .about-inner {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
  }
  .about-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .about-content p {
    margin-top: 30px;
  }
  .about-picture {
    margin-top: 10px;
  }
}
.benefits {
  background: linear-gradient(180deg, var(--color-blue-light) 0%, var(--color-blue-deep) 100%);
}

.benefits-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 20px 155px;
}

.benefits-grid {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
  padding: 60px 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #a8c4ff 0%, #2563eb 52%, #78a2ff 100%) border-box;
  text-align: center;
}

.benefit-icon {
  width: 120px;
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefit-card h3,
.process-card h3,
.occasion-card h3 {
  color: var(--color-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.benefit-card p,
.process-card p,
.occasion-card p {
  font-size: 17px;
  line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .benefits-inner {
    padding: 72px 20px;
  }
  .benefit-card {
    padding: 60px 24px;
    border-width: 1px;
  }
}
@media (max-width: 767px) {
  .benefits-inner {
    padding: 70px 10px 22px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    padding: 60px 24px;
    border-width: 1px;
  }
}
.process {
  padding: 80px 10px;
}

.process-grid {
  display: grid;
  margin-top: 40px;
  padding: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 10px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.process-icon {
  position: relative;
  width: 90px;
  height: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  margin-bottom: 23px;
  overflow: hidden;
  border-radius: 50%;
}

.process-icon img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-icon img:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.process-card p {
  margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .process-grid {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .process {
    padding: 80px 10px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding: 0;
  }
  .process-card {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.occasions {
  padding: 80px 10px;
}

.occasions-grid {
  display: grid;
  margin-top: 30px;
  padding: 0 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.occasion-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.occasion-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.occasion-content {
  padding: 23px 20px 24px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .occasions-grid {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .occasions {
    padding: 80px 10px;
  }
  .occasions-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding: 0;
  }
}
.cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, var(--color-blue-light) 0 50%, #fff 50% 100%);
}

.cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 100px 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--color-blue-light) 0%, #a2baee 100%);
  text-align: center;
}

.cta h2 {
  color: var(--color-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.cta p {
  font-size: 17px;
  line-height: 1.4;
}

.cta-actions {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .cta-inner {
    padding: 80px 10px;
  }
  .cta h2 {
    font-size: 24px;
    line-height: 1;
  }
  .cta p {
    max-width: 330px;
    line-height: 1.4;
  }
  .cta-actions {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-actions .button {
    width: 100%;
  }
}
.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: var(--color-surface);
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1440px;
  -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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 65px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1132px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1060px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  white-space: nowrap;
}

.footer-links a span {
  white-space: nowrap;
}

.footer-links a:first-child {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  -webkit-transition: color 0.2s ease, text-decoration-color 0.2s ease;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-links a:first-child:hover {
    color: var(--color-primary);
    text-decoration-color: currentColor;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer-inner {
    padding-block: 72px;
  }
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
  }
  .footer-links a:first-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-links a:last-child span {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    gap: 65px;
    padding: 72px 24px;
  }
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
  }
  .footer-links a:first-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-links a:last-child span {
    display: block;
  }
}
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.form-field label {
  color: #3a4566;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #acb7cf;
  border-radius: 8px;
  outline: none;
  background: #f0f2fa;
  color: #1a202c;
  font-size: 15px;
  line-height: 1.4;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input::-webkit-input-placeholder, .form-field textarea::-webkit-input-placeholder {
  color: #8993a6;
  opacity: 1;
}

.form-field input::-moz-placeholder, .form-field textarea::-moz-placeholder {
  color: #8993a6;
  opacity: 1;
}

.form-field input:-ms-input-placeholder, .form-field textarea:-ms-input-placeholder {
  color: #8993a6;
  opacity: 1;
}

.form-field input::-ms-input-placeholder, .form-field textarea::-ms-input-placeholder {
  color: #8993a6;
  opacity: 1;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8993a6;
  opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #d92d20;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-error {
  margin: 0;
  color: #d92d20;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.form-agreement.is-invalid input {
  border-radius: 2.5px;
  -webkit-box-shadow: 0 0 0 1px #d92d20;
          box-shadow: 0 0 0 1px #d92d20;
}

.form-agreement + .form-error {
  margin-top: -9px;
}

.form-field input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.form-field input[type=number]::-webkit-inner-spin-button,
.form-field input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.form-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-currency {
  position: relative;
  display: block;
}

.form-currency > span {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  color: #3a4566;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-currency input {
  padding-left: 29px;
}

.form-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  color: #16213e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.form-agreement input {
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  margin: 4px 0 0;
  accent-color: var(--color-primary);
}

.form-agreement a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 15px;
  border: 0;
  border-radius: 8px;
  background: #0c3fb0;
  color: #faf7f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.form-submit:disabled {
  opacity: 1;
  cursor: wait;
}

.form-submit-dots {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3px;
}

.form-submit-dots span {
  -webkit-animation: payment-dot 1.1s infinite ease-in-out;
          animation: payment-dot 1.1s infinite ease-in-out;
}

.form-submit-dots span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.form-submit-dots span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes payment-dot {
  0%, 60%, 100% {
    opacity: 0.25;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@keyframes payment-dot {
  0%, 60%, 100% {
    opacity: 0.25;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .form-submit:hover {
    background: #082d81;
  }
}
@media (max-width: 479px) {
  .form-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.payment-page {
  background: #ecf4ff;
  color: #3a4566;
  font-size: 14px;
}

.payment-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 20px;
}

.payment-layout {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
}

.voucher-ticket,
.payment-card {
  -ms-flex-item-align: start;
      align-self: start;
  border: 1px solid var(--color-primary);
  border-radius: 16px;
}

.voucher-ticket {
  overflow: hidden;
  padding: 36px 32px 42px;
  background: #001d67;
  color: #a9bcff;
}

.voucher-ticket-eyebrow {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voucher-ticket-label {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.6;
}

.voucher-ticket-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 80px;
  padding-bottom: 18px;
  color: #faf7f0;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

.voucher-ticket-amount > span:first-child {
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1;
}

.voucher-ticket-amount-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

.voucher-ticket-divider {
  border-top: 1px dashed rgba(250, 247, 240, 0.25);
}

.voucher-ticket-details {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.voucher-ticket-details div {
  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: 20px;
}

.voucher-ticket-details dt,
.voucher-ticket-details dd,
.voucher-ticket-code,
.voucher-ticket-note {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
}

.voucher-ticket-details dd {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
  color: #faf7f0;
  font-size: 14px;
  font-weight: 500;
}

.voucher-ticket-code {
  margin-top: 18px;
}

.voucher-ticket-note {
  margin-top: 18px;
}

.payment-card {
  padding: 32px 30px 42px;
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #a8c4ff 0%, #2563eb 52%, #78a2ff 100%) border-box;
}

.payment-card h1 {
  color: #1a202c;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.payment-card-subtitle {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.6;
}

.payment-form {
  gap: 15px;
  margin-top: 23px;
}

.payment-secure-note {
  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;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

.payment-secure-note img {
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1200px) {
  .payment-main {
    padding-block: clamp(80px, 11.85vw, 171px);
  }
}
@media (max-width: 1023px) {
  .payment-layout {
    width: min(100%, 728px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 479px) {
  .payment-main {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .voucher-ticket,
  .payment-card {
    padding-right: 24px;
    padding-left: 24px;
  }
  .payment-secure-note {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
.payment-error-page {
  background: #ecf4ff;
  color: #3a4566;
}

.payment-error-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 20px;
}

.payment-error-card {
  width: min(100%, 460px);
  padding: 40px 34px 47px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #a8c4ff 0%, #2563eb 52%, #78a2ff 100%) border-box;
  text-align: center;
}

.payment-error-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  border-radius: 50%;
  background: #f0f2fa;
  color: #2563eb;
}

.payment-error-icon svg {
  width: 18px;
  height: 24px;
  display: block;
}

.payment-error-card h1 {
  margin-top: 22px;
  color: #1a202c;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.7;
}

.payment-error-subtitle {
  width: calc(100% + 17px);
  margin-left: -8.5px;
  margin-top: 7px;
  font-size: 14.5px;
  line-height: 1.6;
}

.payment-error-reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #f09595;
  border-radius: 10px;
  background: #fcebeb;
  color: #a32d2d;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: left;
}

.payment-error-reason svg {
  width: 15px;
  height: 20px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
}

.payment-error-contact {
  margin-top: 28px;
  min-height: 48px;
  background: #2563eb;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}

.payment-error-note {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.6;
}

@media (max-width: 479px) {
  .payment-error-subtitle {
    width: calc(100% + 14px);
    margin-left: -7px;
  }
  .payment-error-reason {
    font-size: 12px;
    line-height: 1.6875;
  }
  .payment-error-reason svg {
    width: 21px;
    height: 28px;
    -ms-flex-preferred-size: 21px;
        flex-basis: 21px;
  }
}
.callback-modal {
  width: min(100% - 32px, 480px);
  padding: 32px 30px 40px;
  color: #1a202c;
}

.callback-modal.fancybox__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.callback-modal h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.callback-modal-subtitle {
  margin-top: 10px;
  color: #737b8d;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.callback-form {
  gap: 15px;
  margin-top: 22px;
}

.callback-form .form-field {
  gap: 6px;
}

.callback-form .form-field label {
  font-size: 14px;
}

.callback-form .form-field input,
.callback-form .form-field textarea {
  min-height: 46px;
  font-size: 15px;
}

.callback-form .form-field textarea {
  min-height: 146px;
}

@media (max-width: 767px) {
  .callback-modal {
    padding: 30px 20px 36px;
  }
  .callback-modal h2 {
    font-size: 24px;
  }
  .callback-modal-subtitle {
    font-size: 14px;
  }
}