@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #1a38cc;
  --primary-dark: #1b1d63;
  --blue: #1a38cc;
  --yellow: #ffc400;
  --text: #202033;
  --bg: #f3f3f3;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================== */

header {
  height: 58px;
  background: var(--primary);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 7vw;

  color: white;
}

.logo img {
  height: 34px;
  display: block;
}

.th-logo {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

/* =========================
   HERO
========================== */

main {
  min-height: calc(100vh - 58px);

  display: grid;
  grid-template-columns: 1fr 1.1fr;

  align-items: center;

  gap: 40px;

  padding: 50px 7vw;
}

.content {
  position: relative;
  max-width: 500px;
  z-index: 3;
}

.badge {
  position: absolute;

  top: -40px;
  left: 300px;

  background: var(--yellow);
  color: #111;

  padding: 12px 28px;

  border-radius: 999px;

  font-size: 18px;
  font-style: italic;
  font-weight: 600;

  transform: rotate(16deg);

  animation: pulse 1.7s ease-in-out infinite;

  box-shadow:
    0 12px 30px rgba(255, 196, 0, 0.35);

  white-space: nowrap;
}

@keyframes pulse {

  0%, 100% {
    transform: rotate(16deg) scale(1);
  }

  50% {
    transform: rotate(16deg) scale(1.08);
  }
}

h1 {
  font-size: clamp(32px, 4vw, 48px);

  line-height: 1;

  font-weight: 800;

  color: var(--primary-dark);

  margin-bottom: 42px;

  letter-spacing: -0.05em;
}

.main-logo {
  width: min(340px, 80vw);

  margin-bottom: 42px;
}

.subtitle {
  font-size: clamp(20px, 2.6vw, 26px);

  line-height: 1.2;

  max-width: 450px;

  margin-bottom: 70px;

  font-weight: 400;
}

/* =========================
   BUTTONS
========================== */

.buttons {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.btn {
  min-width: 190px;

  padding: 18px 32px;

  border-radius: 12px;

  font-size: 22px;
  font-weight: 500;

  text-decoration: none;
  text-align: center;

  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;

  border: 2px solid var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text);

  border: 2px solid var(--blue);
}

/* =========================
   LINKEDIN
========================== */

.socials {
  margin-top: 28px;
}

.linkedin {
  width: 52px;
  height: 52px;

  border: 2px solid var(--blue);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--blue);

  transition: all 0.25s ease;

  text-decoration: none;
}

.linkedin svg {
  width: 26px;
  height: 26px;
}

.linkedin:hover {
  background: var(--primary);

  border-color: var(--primary);

  color: white;

  transform: translateY(-2px);
}

/* =========================
   HERO IMAGE
========================== */

.visual {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 620px;
}

.background-shape {
  width: min(500px, 90vw);

  position: relative;

  top: 15px;

  z-index: 1;

  display: block;
}

/* =========================
   INFO SECTION
========================== */

.info-section {
  padding: 120px 7vw 180px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 34px;
}

.info-card {
  background: white;

  border-radius: 36px;

  padding: 42px 34px;

  box-shadow:
    0 4px 20px rgba(0,0,0,0.08);

  text-align: center;

  opacity: 0;

  transform: translateY(50px);

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

.info-card.show {
  opacity: 1;
  transform: translateY(0);
}

.info-icon {
  width: 92px;
  height: 92px;

  object-fit: contain;

  margin: 0 auto 26px;
}

.info-card h2 {
  color: var(--primary);

  font-size: 22px;

  margin-bottom: 24px;

  font-weight: 700;
}

.info-card p {
  font-size: 18px;

  line-height: 1.45;
}

/* =========================
   CONTACT BOTTOM
========================== */

.info-contact {
  margin-top: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.info-contact p {
  font-size: 28px;
  line-height: 1.3;
}

.info-contact .btn {
  min-width: 220px;
}

/* =========================
   FOOTER
========================== */

.support-footer {
  width: 100%;

  background: #ffffff;

  border-top: 1px solid #e7e7e7;

  margin-top: 80px;

  padding: 28px 0 10px;
}

.support-inner {
  width: 100%;
  padding: 0 7vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr;

  gap: 55px;

  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.footer-title {
  font-size: 14px;
  font-weight: 500;

  color: #666;

  margin-bottom: 14px;

  line-height: 1.45;

  text-align: left;
}

.support-description {
  max-width: 720px;
}

.support-logos {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 18px;

  flex-wrap: wrap;
}

.support-logos img {
  max-height: 42px;

  width: auto;

  object-fit: contain;
}

.support-logos a {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.support-logos a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-address {
  color: #666;

  font-size: 14px;

  line-height: 1.5;

  text-align: left;
}

.footer-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-icons {
  display: flex;
  gap: 12px;
}

.footer-icon {
  width: 44px;
  height: 44px;

  border: 2px solid #d9d9d9;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #a0a0a0;

  transition: 0.2s ease;

  text-decoration: none;
}

.footer-icon:hover {
  background: var(--primary);

  border-color: var(--primary);

  color: white;

  transform: translateY(-2px);
}

.footer-icon svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  margin-top: 28px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 22px;

  flex-wrap: nowrap;

  text-align: center;

  font-size: 13px;

  color: #c1c1c1;
}

.footer-bottom span {
  white-space: nowrap;
}}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #999;

  text-decoration: none;

  transition: 0.2s ease;
  white-space: nowrap;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}
/* =========================
   RESPONSIVE
========================== */

@media (max-width: 980px) {

  main {
    grid-template-columns: 1fr;

    text-align: center;

    padding: 90px 7vw 40px;

    gap: 20px;
  }

  .content {
    margin: 0 auto;
  }

  .badge {
    left: 50%;
    top: -60px;

    transform:
      translateX(-50%)
      rotate(16deg);
  }

  @keyframes pulse {

    0%, 100% {
      transform:
        translateX(-50%)
        rotate(16deg)
        scale(1);
    }

    50% {
      transform:
        translateX(-50%)
        rotate(16deg)
        scale(1.08);
    }
  }

  .subtitle {
    margin: 0 auto 50px;
  }

  .buttons {
    justify-content: center;
  }

  .socials {
    display: flex;
    justify-content: center;
  }

  .visual {
    min-height: auto;
  }

  .background-shape {
    width: min(520px, 90vw);

    top: 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-contact {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-description,
  .footer-address,
  .footer-contact {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  header {
    height: 54px;
    padding: 0 20px;
  }

  .logo img {
    height: 28px;
  }

  .th-logo {
    font-size: 10px;
  }

  main {
    padding: 82px 22px 34px;
    gap: 28px;
  }

  .badge {
    top: -52px;

    padding: 9px 20px;

    font-size: 14px;
  }

  h1 {
    font-size: 30px;

    margin-bottom: 30px;
  }

  .main-logo {
    width: min(270px, 82vw);

    margin-bottom: 30px;
  }

  .subtitle {
    font-size: 20px;

    margin-bottom: 36px;
  }

  .buttons {
    gap: 14px;
  }

  .btn {
    width: 100%;

    min-width: unset;

    padding: 15px 24px;

    font-size: 18px;
  }

  .linkedin {
    width: 48px;
    height: 48px;
  }

  .linkedin svg {
    width: 23px;
    height: 23px;
  }

  .background-shape {
    width: min(360px, 95vw);
  }

  .info-section {
    padding: 80px 22px 180px;
  }

  .info-card {
    padding: 34px 26px;
  }

  .info-card p {
    font-size: 16px;
  }

  .info-contact p {
    font-size: 22px;
  }

  .support-footer {
    padding: 10px 0 10px;
  }

  .support-logos {
    gap: 14px;
  }

  .support-inner {
    padding: 0 22px;
  }

  .support-logos img {
    max-height: 28px;
  }
}

/* =========================
   LEGAL PAGES
========================== */

.legal-page {
  display: block;
  min-height: auto;
  padding: 80px 7vw;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 56px;
  border-radius: 24px;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.06);
}

.legal-content h1 {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--primary);
}
.legal-content ul {
  padding-left: 28px;

  margin-top: 14px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 10px;

  line-height: 1.5;
}

.legal-content p,
.legal-content li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.logo a {
  display: block;
}

/* =========================
   MOBILE
========================== */

@media (max-width: 600px) {

  .legal-page {
    padding: 40px 22px;
  }

  .legal-content {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .legal-content h1 {
    font-size: 30px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}