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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #041724;
  color: #ffffff;
  line-height: 1.55;
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2, 10, 18, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(2, 10, 18, 0.92);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 212, 42, 0.18));
}

.logo span {
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffd42a;
}

.header-btn {
  min-width: 220px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.header-btn:hover {
  background: #ffd42a;
  color: #09131d;
  border-color: #ffd42a;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  margin: 6px auto;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-home {
  background:
    linear-gradient(rgba(2, 12, 22, 0.55), rgba(2, 12, 22, 0.72)),
    url("https://images.unsplash.com/photo-1621761191319-c6fb62004040?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 212, 42, 0.08), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-top {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 240px;
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd42a;
  color: #09131d;
  font-weight: 800;
  font-size: 17px;
  transition: 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 212, 42, 0.16);
}

.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.home-intro {
  background: #022536;
  padding: 95px 0;
}

.home-intro-grid,
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.section-label {
  color: #ffd42a;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-intro h2,
.page-hero h1,
.section-title,
.content-card h2,
.exchange-info h2 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.12;
  font-weight: 800;
}

.home-intro h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.home-intro p,
.content-card p,
.card p,
.page-lead,
.footer-text,
.step-card p,
.info-item p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.quick-section,
.page-section {
  padding: 95px 0;
}

.quick-section {
  background: #051726;
}

.center {
  text-align: center;
}

.section-title {
  margin-bottom: 42px;
}

.page-hero {
  padding-top: 150px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #071f2e 0%, #041724 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-lead {
  max-width: 760px;
  margin-top: 16px;
}

.content-card,
.card,
.step-card,
.exchange-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-card {
  padding: 34px;
}

.content-card h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.content-card p + p {
  margin-top: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  padding: 30px;
  transition: 0.25s ease;
}

.card:hover,
.step-card:hover,
.content-card:hover,
.exchange-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 42, 0.35);
}

.card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.quote-card p {
  margin-bottom: 18px;
}

.quote-card span {
  color: #ffd42a;
  font-weight: 800;
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.step-card {
  padding: 30px;
  transition: 0.25s ease;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffd42a;
  color: #09131d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.exchange-section {
  background: #051726;
}

.exchange-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.exchange-card {
  padding: 32px;
  transition: 0.25s ease;
}

.exchange-form {
  display: grid;
  gap: 22px;
}

.form-group {
  display: grid;
  gap: 12px;
}

.form-label {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.toggle-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toggle-btn {
  min-width: 150px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.toggle-btn:hover {
  border-color: rgba(255, 212, 42, 0.45);
}

.toggle-btn.active {
  background: #ffd42a;
  color: #09131d;
  border-color: #ffd42a;
}

.form-control {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 17px;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control:focus {
  border-color: rgba(255, 212, 42, 0.7);
}

select.form-control option {
  color: #111111;
}

.result-box {
  min-height: 94px;
  padding: 18px 20px;
  background: rgba(255, 212, 42, 0.08);
  border: 1px solid rgba(255, 212, 42, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.result-value {
  font-size: 34px;
  font-weight: 800;
  color: #ffd42a;
  line-height: 1;
}

.result-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.submit-btn {
  min-height: 62px;
  border: none;
  background: #ffd42a;
  color: #09131d;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 212, 42, 0.16);
}

.exchange-info h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

.info-item + .info-item {
  margin-top: 22px;
}

.info-title {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffd42a;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  background: #03131d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ffd42a;
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

  .header-btn {
    min-width: 180px;
    font-size: 13px;
  }

  .hero-text,
  .home-intro p,
  .content-card p,
  .card p,
  .page-lead,
  .footer-text,
  .step-card p,
  .info-item p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: block;
    position: relative;
    z-index: 120;
  }

  .header-btn {
    display: none;
  }

  .nav {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    background: rgba(2, 10, 18, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .home-intro-grid,
  .content-grid,
  .cards,
  .steps,
  .footer-inner,
  .exchange-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-inner {
    min-height: 78px;
  }

  .nav {
    top: 78px;
  }

  .logo,
  .footer-logo {
    font-size: 18px;
  }

  .hero-content {
    padding-top: 122px;
    padding-bottom: 72px;
  }

  .hero-top {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero h1,
  .page-hero h1,
  .section-title,
  .home-intro h2 {
    font-size: 40px;
  }

  .home-intro h3,
  .exchange-info h2 {
    font-size: 28px;
  }

  .hero-text,
  .home-intro p,
  .content-card p,
  .card p,
  .page-lead,
  .footer-text,
  .step-card p,
  .info-item p {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    min-width: 100%;
    font-size: 16px;
    min-height: 56px;
  }

  .home-intro,
  .quick-section,
  .page-section {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .content-card,
  .card,
  .step-card,
  .exchange-card {
    padding: 24px;
  }

  .card h3,
  .step-card h3,
  .content-card h2 {
    font-size: 24px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .toggle-btn {
    width: 100%;
  }

  .result-value {
    font-size: 28px;
  }
}


.rates-strip {
  padding: 38px 0 0;
  background: #041724;
}

.rates-strip__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.rates-strip__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.rate-card p {
  font-size: 18px;
  line-height: 1.5;
}

.contacts-section .card a,
.exchange-info a {
  color: #ffd42a;
  font-weight: 800;
}

.aml-note {
  margin-top: 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.security-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px;
}

.security-panel h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  margin-bottom: 20px;
}

.security-lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.security-list {
  margin: 26px 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}

.security-list li {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
}

.floating-tg {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffd42a;
  color: #09131d;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

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

.floating-tg__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(9, 19, 29, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

@media (max-width: 900px) {
  .rates-strip__header {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .security-panel {
    padding: 24px;
  }

  .security-list li,
  .security-lead,
  .aml-note,
  .rate-card p {
    font-size: 16px;
  }

  .floating-tg {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px;
  }

  .floating-tg__text {
    display: none;
  }
}


/* ===== Premium live rates ===== */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.rate-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 212, 42, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.rate-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rate-card h3 {
  font-size: 30px;
  line-height: 1;
  margin: 0;
}

.rate-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.12);
}

.rate-icon--btc,
.rate-icon--eth,
.rate-icon--usdt {
  background: rgba(255, 212, 42, 0.1);
  color: #ffd42a;
}

.rate-card p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: #ffd42a;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .rate-card {
    min-height: 170px;
    padding: 24px;
  }

  .rate-card h3 {
    font-size: 26px;
  }

  .rate-card p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .rate-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rate-card {
    min-height: auto;
    padding: 22px;
  }

  .rate-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .rate-card h3 {
    font-size: 24px;
  }

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


/* ===== Cleaner rate cards ===== */
.rate-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.rate-card{
  min-height:168px;
  padding:28px 26px;
  border:1px solid rgba(255,212,42,0.16);
  background:linear-gradient(180deg, rgba(10,34,49,0.98), rgba(6,24,37,0.98));
  box-shadow:0 10px 30px rgba(0,0,0,0.16);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.rate-card__top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  margin-bottom:18px;
}

.rate-logo{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:block;
}

.rate-card h3{
  margin:0;
  font-size:20px;
  line-height:1;
  letter-spacing:.2px;
}

.rate-card p{
  margin:0;
  font-size:17px;
  font-weight:700;
  line-height:1.55;
  color:#ffffff;
  text-align:left;
}

.rate-sep{
  color:rgba(255,212,42,0.95);
  padding:0 8px;
  font-weight:800;
}

.rates-strip__note{
  font-size:14px;
}

@media (max-width:1100px){
  .rate-cards{
    grid-template-columns:1fr;
  }
  .rate-card{
    min-height:auto;
  }
}

@media (max-width:600px){
  .rate-card{
    padding:22px 20px;
  }
  .rate-card p{
    font-size:16px;
  }
  .rate-logo{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
}


/* ===== Mobile optimization ===== */
html, body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .logo {
    font-size: 17px;
    max-width: 170px;
    line-height: 1.1;
  }

  .nav {
    top: 74px;
    padding: 18px 16px 22px;
    gap: 14px;
  }

  .nav a {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-btn,
  .header-btn,
  .submit-btn,
  .toggle-btn {
    min-height: 54px;
    border-radius: 14px;
  }

  .page-hero {
    padding-top: 106px;
    padding-bottom: 42px;
  }

  .page-hero h1,
  .section-title,
  .home-intro h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
  }

  .home-intro h3,
  .exchange-info h2,
  .content-card h2,
  .card h3,
  .step-card h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .home-intro,
  .quick-section,
  .page-section,
  .rates-strip {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-intro-grid,
  .content-grid,
  .cards,
  .steps,
  .footer-inner,
  .exchange-layout,
  .rate-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .content-card,
  .card,
  .step-card,
  .exchange-card,
  .security-panel,
  .rate-card {
    padding: 20px;
    border-radius: 18px;
  }

  .section-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .page-lead,
  .home-intro p,
  .content-card p,
  .card p,
  .step-card p,
  .info-item p,
  .footer-text,
  .security-lead,
  .aml-note {
    font-size: 15px;
    line-height: 1.55;
  }

  .rate-card {
    min-height: auto;
  }

  .rate-card__top {
    gap: 12px;
    margin-bottom: 12px;
  }

  .rate-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .rate-card h3 {
    font-size: 18px;
  }

  .rate-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .result-box {
    min-height: 82px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .result-value {
    font-size: 24px;
  }

  .result-note {
    font-size: 13px;
    line-height: 1.4;
  }

  .exchange-form {
    gap: 16px;
  }

  .form-group {
    gap: 10px;
  }

  .form-label {
    font-size: 15px;
  }

  .form-control {
    min-height: 56px;
    font-size: 16px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .toggle-group {
    gap: 10px;
  }

  .toggle-btn {
    min-width: 100%;
    font-size: 15px;
  }

  .steps {
    gap: 14px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-links {
    gap: 10px 18px;
  }

  .floating-tg {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 999px;
  }

  .floating-tg__icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 18px, 1200px);
  }

  .header-inner {
    min-height: 68px;
  }

  .nav {
    top: 68px;
  }

  .hero-content {
    padding-top: 98px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(26px, 8.5vw, 34px);
  }

  .hero-text,
  .page-lead,
  .home-intro p,
  .content-card p,
  .card p,
  .step-card p,
  .info-item p,
  .footer-text,
  .security-lead,
  .aml-note {
    font-size: 14px;
  }

  .content-card,
  .card,
  .step-card,
  .exchange-card,
  .security-panel,
  .rate-card {
    padding: 18px;
  }

  .hero-btn,
  .submit-btn,
  .toggle-btn,
  .form-control {
    min-height: 52px;
    font-size: 15px;
  }

  .result-value {
    font-size: 22px;
  }

  .floating-tg__text {
    display: none;
  }
}


/* Fix mobile header overlap */
@media (max-width: 900px) {
  .site-header .header-btn{
    display:none !important;
  }

  .hero-content{
    padding-top:120px;
    padding-bottom:48px;
  }

  .hero h1{
    font-size:clamp(26px,8vw,36px);
    line-height:1.08;
    margin-bottom:14px;
  }

  .hero-text{
    font-size:14px;
    line-height:1.5;
  }
}

/* mobile header fix */
@media (max-width: 900px){
.site-header .header-btn{
display:none !important;
}
}


.premium-calc-section {
  background: linear-gradient(180deg, #041724 0%, #051726 100%);
}

.calc-subtitle {
  max-width: 880px;
  margin: -16px auto 34px;
  font-size: 20px;
  color: rgba(255,255,255,0.82);
}

.premium-calc {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.premium-calc__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.premium-tab {
  min-height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.premium-tab.active {
  background: #ffd42a;
  color: #09131d;
  border-color: #ffd42a;
}

.premium-calc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, .7fr) 70px minmax(0, 1.15fr) minmax(180px, .7fr);
  gap: 16px;
  align-items: end;
}

.premium-field {
  display: grid;
  gap: 10px;
}

.premium-field label {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
}

.premium-input {
  width: 100%;
  min-height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 0 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  outline: none;
}

.premium-input:focus {
  border-color: rgba(255,212,42,0.75);
}

.premium-input[readonly] {
  background: rgba(255,255,255,0.06);
}

.premium-swap {
  min-height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #ffd42a;
  font-size: 26px;
  cursor: pointer;
}

.premium-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.premium-stat {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.premium-stat span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.premium-stat strong {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
}

.premium-stat--accent {
  border-color: rgba(255,212,42,0.22);
  background: rgba(255,212,42,0.08);
}

.premium-stat--accent strong {
  color: #ffd42a;
}

.premium-calc__footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.premium-update {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.premium-cta {
  min-width: 260px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  background: #ffd42a;
  color: #09131d;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

@media (max-width: 1100px) {
  .premium-calc__grid {
    grid-template-columns: 1fr 180px 70px 1fr 180px;
  }
}

@media (max-width: 900px) {
  .premium-calc {
    padding: 22px;
    border-radius: 24px;
  }

  .calc-subtitle {
    font-size: 17px;
  }

  .premium-calc__grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-field--amount,
  .premium-field--result {
    grid-column: 1 / -1;
  }

  .premium-swap {
    grid-column: 1 / -1;
  }

  .premium-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .premium-tab,
  .premium-input,
  .premium-swap {
    min-height: 56px;
  }

  .premium-tab {
    font-size: 16px;
  }

  .premium-input {
    font-size: 18px;
  }

  .premium-calc__grid {
    grid-template-columns: 1fr;
  }

  .premium-field,
  .premium-field--amount,
  .premium-field--result,
  .premium-swap {
    grid-column: auto;
  }

  .premium-cta {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .logo { gap: 10px; font-size: 18px; }
  .logo__img { width: 34px; height: 34px; }
  .footer-logo { font-size: 18px; }
  .footer-logo__img { width: 32px; height: 32px; }
}


/* procedure page final fix */
.steps-process .step-card:last-child{
  grid-column: span 2;
  max-width: 600px;
  margin: 0 auto;
}

.aml-note--center{
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 900px){
  .steps-process .step-card:last-child{
    grid-column: auto;
    max-width: none;
  }
}


/* ===== Живі відгуки ===== */
.bestchange-section {
  background:
    radial-gradient(circle at top center, rgba(255, 212, 42, 0.06), transparent 34%),
    #041724;
}

.bestchange-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.bestchange-item {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.bestchange-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 42, 0.34);
}

.bestchange-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.bestchange-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bestchange-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 212, 42, 0.12);
  border: 1px solid rgba(255, 212, 42, 0.25);
  color: #ffd42a;
  font-size: 22px;
  font-weight: 800;
}

.bestchange-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.bestchange-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bestchange-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.bestchange-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 212, 42, 0.1);
  border: 1px solid rgba(255, 212, 42, 0.22);
  color: #ffd42a;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.bestchange-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 700px) {
  .bestchange-item {
    padding: 20px 18px;
  }

  .bestchange-item__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bestchange-name {
    font-size: 18px;
  }

  .bestchange-item p {
    font-size: 16px;
  }
}
