@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --ink: #090626;
  --muted: #6F6D6B;
  --accent: #009DB2;
  --accent-2: #486284;
  --accent-light: rgba(0,157,178,0.15);
  --bg: #F6F8FA;
  --card: #FFFFFF;
  --shadow: 0px 4px 23.5px 0px rgba(0,0,0,0.12);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Inter', sans-serif; color: var(--muted); background: var(--bg);
  font-size: 16px; line-height: 26px; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); font-weight: 600; }
h1, h2, h3 { color: var(--ink); margin: 0; font-weight: 600; }
h1 { font-size: 44px; line-height: 50px; }
h2 { font-size: 32px; line-height: 40px; }
h3 { font-size: 20px; line-height: 30px; }
h1 span, h2 span {
  background: linear-gradient(90deg, #26CFE5 0%, #486284 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
p { margin: 0 0 15px; }
ul, ol { margin: 0 0 15px; padding-left: 22px; }
li { margin-bottom: 8px; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 860px; }

/* Header */
.site-header { background: var(--card); box-shadow: 0 1px 0 rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 10; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.site-header img { height: 40px; width: auto; display: block; }
.site-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-nav a { color: var(--ink); font-size: 15px; font-weight: 600; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a.active { color: var(--accent); }

/* Hero */
.hero { padding: 90px 0 70px; text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--accent-light); color: var(--accent);
  font-size: 14px; font-weight: 600; line-height: 1; padding: 9px 20px; border-radius: 63px; margin-bottom: 27px;
}
.badge svg { width: 16px; height: 16px; }
.hero h1 { margin-bottom: 25px; }
.hero p { max-width: 750px; margin: 0 auto; }
.hero .cta { margin-top: 40px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 63px; font-weight: 600; font-size: 15px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); color: #FFF;
}
.btn:hover { text-decoration: none; opacity: 0.92; }
.btn.secondary { background: var(--card); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }

/* Cards / features */
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 60px; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; margin-top: 50px; }
.feature .icontitle { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.feature .icontitle svg { width: 25px; height: 25px; flex: none; }
.section { padding: 40px 0; }
.section-title { text-align: center; margin-bottom: 20px; }
.section-lead { text-align: center; max-width: 750px; margin: 0 auto; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 35px 30px; }
.step .num { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; align-items: center; justify-content: center;
  background: var(--accent-light); color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; }

/* Legal pages */
.legal { padding: 60px 0 80px; }
.legal h1 { font-size: 40px; line-height: 44px; margin-bottom: 30px; }
.legal h2 { font-size: 22px; line-height: 32px; margin: 40px 0 15px; }
.legal h3 { font-size: 17px; margin: 25px 0 10px; }
.legal .lead { font-size: 18px; line-height: 28px; }
.legal .box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 35px; margin: 30px 0; }
.legal .box h2 { margin-top: 0; }
.legal .contact { border-left: 4px solid var(--accent); padding: 15px 25px; background: rgba(0,157,178,0.06);
  border-radius: 0 var(--radius) var(--radius) 0; margin: 25px 0; }
.legal .contact p { margin: 0 0 6px; }
.legal .en { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.08); }
.legal .en h2 { margin-top: 0; }
.legal .meta { font-size: 14px; line-height: 22px; margin-top: 40px; }
.legal table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; line-height: 24px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.legal th { color: var(--ink); font-weight: 600; width: 22%; }

/* Footer */
.site-footer { background: var(--card); margin-top: 60px; padding: 40px 0 30px; border-top: 1px solid rgba(0,0,0,0.06); }
.site-footer .container { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.site-footer img { height: 34px; width: auto; display: block; margin-bottom: 12px; }
.site-footer p { font-size: 14px; line-height: 22px; margin: 0; }
.site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.site-footer nav a { font-size: 14px; color: var(--ink); }
.site-footer .copy { width: 100%; font-size: 13px; margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.06); }

@media screen and (max-width: 992px) {
  .card { padding: 40px; }
  .features, .steps { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
  h1, .legal h1 { font-size: 30px; line-height: 36px; }
  h2 { font-size: 26px; line-height: 32px; }
  .hero { padding: 50px 0 40px; }
  .card, .legal .box { padding: 25px 20px; }
  .site-header .container { height: auto; padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-nav { gap: 16px; }
}
