:root {
  --navy: #16324a;
  --navy-2: #1c3d5a;
  --text-body: #5b6b78;
  --mint-bg: #e7f2ee;
  --mint-bg-2: #eef6f3;
  --green: #2f9e6e;
  --green-dark: #238059;
  --blue: #3f8fc4;
  --line: #e4e9ed;
  --card-bg: #ffffff;
  --page-bg: #fbfcfd;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans Georgian", sans-serif;
  color: var(--navy);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ---------- HEADER + HERO ---------- */
.hero-outer {
  position: relative;
  background: linear-gradient(180deg, #eef4f7 0%, #e6eef3 100%);
  overflow: hidden;
}
header {
  position: relative;
  z-index: 5;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 40px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header {
  animation: page-rise 0.65s ease both;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.logo-badge:hover {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 8px 18px rgba(63, 143, 196, 0.2);
}
.logo-badge svg {
  width: 22px;
  height: 22px;
}
.logo-text {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--navy);
}
.safe-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eaf6ef;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 24px;
  animation: page-rise 0.6s ease 0.16s both;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.safe-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(35, 128, 89, 0.16);
}
.safe-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}
.language-switcher {
  animation: page-rise 0.6s ease 0.24s both;
}
.hero-left {
  width: 50%;
  padding: 56px 40px 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}
.hero-left h1 {
  font-size: 44px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 480px;
}
.hero-left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 440px;
  margin-bottom: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 430px;
  box-shadow: 0 8px 24px rgba(22, 50, 74, 0.06);
}
.hero-note .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eaf6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-note .icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}
.hero-note span {
  font-size: 14px;
  line-height: 1.5;
  color: #3c4b58;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-photo-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  max-width: 1050px;
  z-index: 1;
  background-image: url("img/hero-photo.jpg");
  background-size: cover;
  background-position: center 40%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.55) 60px,
    #000 140px
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 0.55) 60px,
    #000 140px
  );
}

/* ---------- INFO SECTION ---------- */
.info-section {
  padding: 55px 0 20px 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 44px;
}
.section-heading .dash {
  width: 34px;
  height: 2px;
  background: var(--green);
}
.section-heading h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.info-card .top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eaf6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 19px;
  height: 19px;
  color: var(--green-dark);
}
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.info-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ---------- CALCULATE SECTION ---------- */
.calc-section {
  padding: 56px 0 60px 0;
}
.calc-panel {
  background: var(--mint-bg);
  border-radius: 24px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.calc-left h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 380px;
}
.calc-left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 26px;
  max-width: 400px;
}
.lock-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 400px;
}
.lock-note .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lock-note .icon-box svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}
.lock-note span {
  font-size: 13.5px;
  line-height: 1.5;
  color: #3c4b58;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.bank-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(22, 50, 74, 0.08);
}
.bank-card h4 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.bank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.bank-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  background: #fff;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.1s;
}
.bank-row:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(22, 50, 74, 0.08);
}
.bank-row:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(63, 143, 196, 0.22);
}
.bank-row:active {
  transform: scale(0.985);
}
.bank-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.bank-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bank-mark img {
  width: 30px;
  height: 25px;
}
.bank-mark.a {
  background: #4a6fd600;
}
.bank-mark.b {
  background: #e0892c00;
}
.bank-row-left strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  min-width: 0;
  overflow-wrap: break-word;
}
.bank-row svg.chev {
  width: 16px;
  height: 16px;
  color: #9aa7b2;
  flex-shrink: 0;
}
.bank-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-body);
}
.bank-secure svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
}

/* ---------- FEATURES ROW ---------- */
.features-row {
  padding: 44px 0 12px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-item > div {
  min-width: 0;
}
.feature-item h5,
.feature-item p {
  overflow-wrap: break-word;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon.i1 {
  background: #eaf6ef;
}
.feature-icon.i2 {
  background: #e9f2f8;
}
.feature-icon.i3 {
  background: #eaf6ef;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
.feature-icon.i1 svg {
  color: var(--green-dark);
}
.feature-icon.i2 svg {
  color: var(--blue);
}
.feature-icon.i3 svg {
  color: var(--green-dark);
}
.feature-item h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- TIP BAR ---------- */
.tip-bar {
  margin: 44px 0 60px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.tip-bar svg {
  width: 18px;
  height: 18px;
  color: #e0a53c;
  flex-shrink: 0;
}
.tip-bar span {
  font-size: 13.5px;
  color: var(--text-body);
}

/* ---------- MOTION ---------- */
@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes photo-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes icon-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hero-outer {
  animation: page-rise 0.7s ease both;
}
.hero-left > * {
  animation: hero-copy-in 0.65s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.hero-left > :nth-child(1) {
  animation-delay: 0.12s;
}
.hero-left > :nth-child(2) {
  animation-delay: 0.2s;
}
.hero-left > :nth-child(3) {
  animation-delay: 0.28s;
}
.hero-photo-layer {
  animation: photo-in 1.1s ease both;
}
.info-section,
.calc-section,
.features-row,
.tip-bar {
  animation: page-rise 0.7s ease both;
}
.info-card,
.feature-item,
.bank-card,
.lock-note,
.tip-bar {
  animation: page-rise 0.65s cubic-bezier(0.22, 0.8, 0.25, 1) both;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.info-card:nth-child(1) {
  animation-delay: 0.08s;
}
.info-card:nth-child(2) {
  animation-delay: 0.16s;
}
.info-card:nth-child(3) {
  animation-delay: 0.24s;
}
.feature-item:nth-child(1) {
  animation-delay: 0.08s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.16s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.24s;
}
.info-card:hover,
.bank-card:hover,
.lock-note:hover,
.tip-bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(22, 50, 74, 0.1);
}
.info-card:hover .info-icon,
.feature-item:hover .feature-icon {
  animation: icon-pulse 0.55s ease;
}
.bank-row:hover {
  transform: translateY(-2px);
}
.bank-row:hover svg.chev {
  transform: translateX(3px);
}
.bank-row svg.chev {
  transition: transform 0.2s ease;
}
.language-toggle,
.language-option,
.support-chat-button,
.support-viber-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(22, 50, 74, 0.12);
}
.language-option:hover {
  transform: translateX(3px);
}
.support-chat-button:active,
.support-viber-button:active,
.language-toggle:active,
.language-option:active {
  transform: scale(0.97);
}
.bank-row:focus-visible,
.support-chat-button:focus-visible,
.support-viber-button:focus-visible,
.language-toggle:focus-visible,
.language-option:focus-visible {
  outline: 3px solid rgba(63, 143, 196, 0.28);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  .calc-panel {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .calc-left {
    text-align: center;
  }
  .calc-left .lock-note {
    justify-content: center;
  }
  .bank-card {
    margin-top: 4px;
  }
  .features-row {
    grid-template-columns: 1fr;
  }
  .hero-left h1 {
    font-size: 34px;
  }
  header {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 570px) {
  .wrap {
    padding: 0 20px;
  }
  header {
    padding: 20px 20px 0 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .logo-text {
    color: #000;
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 12px;
    border-radius: 16px;
  }
  .hero-grid {
    max-width: none;
  }
  .hero-left {
    width: 100%;
    padding: 28px 20px 26px 20px;
  }
  .hero-left h1 {
    font-size: 30px;
    max-width: 100%;
    color: #000;
  }
  .hero-left p {
    font-size: 14.5px;
    max-width: 100%;
    color: #000;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 16px;
    border-radius: 20px;
  }
  .hero-note {
    max-width: 100%;
  }
  .hero-photo-layer {
    position: absolute;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background-image: url("img/hero-photo.jpg");
    background-size: cover;
    background-position: center 42%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .info-section {
    padding: 40px 0 10px 0;
  }
  .calc-panel {
    padding: 24px;
  }
  .tip-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 530px) {
  .hero-note {
    padding: 14px 16px;
    gap: 12px;
  }
  .hero-note .icon-box {
    width: 36px;
    height: 36px;
  }
  .hero-note span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 25px;
  }
  .logo-text {
    font-size: 12.5px;
  }
  .safe-badge {
    font-size: 11.5px;
    padding: 8px 12px;
    gap: 6px;
  }
  .safe-badge svg {
    width: 14px;
    height: 14px;
  }
  .calc-left h2 {
    font-size: 21px;
  }
  .lock-note {
    padding: 14px 16px;
  }
}

@media (max-width: 387px) {
  .wrap {
    padding: 0 14px;
  }
  .calc-panel {
    padding: 16px;
    border-radius: 16px;
  }
  .bank-card {
    padding: 16px;
  }
  .bank-row {
    padding: 11px 12px;
    gap: 8px;
  }
  .bank-row-left {
    gap: 8px;
  }
  .bank-mark {
    width: 26px;
    height: 26px;
  }
  .bank-row-left strong {
    font-size: 12.5px;
  }
  .bank-card h4 {
    font-size: 13px;
  }
  .bank-secure {
    font-size: 11px;
    gap: 6px;
  }
  .info-card {
    padding: 20px;
  }
  .hero-note {
    align-items: flex-start;
  }
  .hero-note .icon-box {
    margin-top: 1px;
  }
  .hero-note span {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

/* ---------- TECH SUPPORT CHAT ---------- */
.support-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  font-family: "Noto Sans Georgian", sans-serif;
}

.support-chat-button {
  border: none;
  cursor: pointer;
  background: #c2e9d2;
  color: #238059;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(35, 128, 89, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.support-chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px #238059;
}

.support-chat-button svg {
  width: 22px;
  height: 22px;
}

.support-chat-window {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(22, 50, 74, 0.18);
  border: 1px solid #e4e9ed;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.97);
  transition: all 0.25s ease;
}

.support-widget.active .support-chat-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.support-chat-header {
  background: linear-gradient(135deg, #a2e3bd, #238059c9);
  color: #000000;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-chat-header-icon {
  width: 42px;
  height: 42px;
  background: rgb(194 233 210);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-chat-header-icon svg {
  width: 22px;
  height: 22px;
  color: #238059;
}

.support-chat-header h3 {
  font-size: 15px;
  margin: 0 0 3px;
  font-weight: 700;
}

.support-chat-header p {
  font-size: 12px;
  margin: 0;
  opacity: 0.85;
}

.support-chat-content {
  padding: 22px;
}

.support-chat-content p {
  color: #000000;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.support-viber-button {
  width: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  background: #3f8fc4;
  color: #fff;

  padding: 14px 18px;
  border-radius: 12px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.support-viber-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.support-viber-button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 570px) {
  .support-widget {
    right: 16px;
    bottom: 16px;
  }

  .support-chat-window {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 68px;
  }

  .support-chat-button span {
    display: none;
  }

  .support-chat-button {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ---------- LANGUAGE SWITCHER ---------- */
.language-switcher {
  position: relative;
  z-index: 20;
}
.language-toggle {
  border: 1px solid rgba(22, 50, 74, 0.12);
  background: #fff;
  color: var(--navy);
  border-radius: 24px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(22, 50, 74, 0.08);
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 145px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 14px 35px rgba(22, 50, 74, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.18s ease;
}
.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-option {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 9px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--navy);
  font-size: 13px;
}
.language-option:hover,
.language-option.active {
  background: var(--mint-bg);
}
@media (max-width: 570px) {
  .language-toggle {
    padding: 8px 11px;
    font-size: 12px;
  }
  .language-menu {
    min-width: 130px;
  }
}
