*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-starter {
  --color-bg: #000000;
  --color-border: #ff0000;
  --color-text: #ffffff;
  --color-muted: #a0a0a0;
  --color-accent: #ff0000;
  --color-accent-dark: #8b0000;
  --radius-card: clamp(20px, 4vw, 30px);
  --radius-btn: 8px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-card: 0 24px 48px rgba(0, 0, 0, 0.45);

  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-starter .page {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  padding-bottom: max(clamp(1.25rem, 4vw, 3rem), env(safe-area-inset-bottom));
}

.page-starter .card {
  position: relative;
  background-color: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 4vw, 2.625rem) clamp(1.25rem, 3.5vw, 2.75rem);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-starter .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--color-border);
  opacity: 0.15;
}

.page-starter .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 70%);
  height: 200px;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 200'%3E%3Cpath d='M0 80 C40 40 80 100 120 60 C160 20 200 90 240 50 C280 10 300 70 320 40 L320 0 L0 0 Z' fill='%232a2a2a'/%3E%3Cpath d='M0 120 C50 90 90 130 140 95 C190 60 230 110 280 75 C300 60 310 85 320 70 L320 0 L0 0 Z' fill='%231f1f1f'/%3E%3Cpath d='M0 160 C60 130 100 170 160 140 C220 110 260 150 320 120 L320 0 L0 0 Z' fill='%23181818'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-starter .card > * {
  position: relative;
  z-index: 1;
}

.page-starter .card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-starter .card-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-xs);
}

.page-starter .card-title h1 {
  color: var(--color-text);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.page-starter .card-title .price {
  color: var(--color-accent);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-starter .card-subtitle {
  color: var(--color-muted);
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 36ch;
}

.page-starter .card-section {
  margin-bottom: var(--space-lg);
}

.page-starter .section-label {
  display: block;
  color: var(--color-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.page-starter .features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.8125rem);
}

.page-starter .features--tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.625rem, 1.5vw, 0.8125rem);
}

@media (min-width: 520px) {
  .page-starter .features--tiers {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-md);
  }
}

.page-starter .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.4;
}

.page-starter .features li.invest {
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1.8vw, 0.875rem);
  letter-spacing: 0.02em;
}

.page-starter .feature-text {
  flex: 1;
  min-width: 0;
}

.page-starter .icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page-starter .icon--check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5L6.5 12L13 4' stroke='%23FF0000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-starter .icon--sun {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='3.2' fill='%23FFB800'/%3E%3Cpath d='M8 1.5V3.2M8 12.8V14.5M14.5 8H12.8M3.2 8H1.5M12.7 3.3L11.5 4.5M4.5 11.5L3.3 12.7M12.7 12.7L11.5 11.5M4.5 4.5L3.3 3.3' stroke='%23FFB800' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.page-starter .card-footer {
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-starter .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--radius-btn);
  background: linear-gradient(90deg, var(--color-accent-dark) 0%, #cc0000 50%, var(--color-accent) 100%);
  color: var(--color-text);
  font-family: inherit;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

@media (min-width: 480px) {
  .page-starter .cta-button {
    width: auto;
    min-width: 11rem;
  }
}

.page-starter .cta-button:hover {
  filter: brightness(1.08);
}

.page-starter .cta-button:active {
  transform: scale(0.98);
}

.page-starter .cta-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .page-starter .cta-button {
    transition: none;
  }

  .page-starter .cta-button:active {
    transform: none;
  }
}

.page-instaforex {
  --color-red: #e62e43;
  --color-red-btn: #e8334a;
  --color-red-dark: #c92538;
  --color-purple-top: #3d1a6e;
  --color-purple-mid: #2a1050;
  --color-purple-deep: #160830;
  --color-purple-form: rgba(22, 12, 42, 0.82);
  --color-purple-form-head: rgba(12, 6, 28, 0.95);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-text-sub: rgba(200, 190, 220, 0.85);
  --color-nav: #333333;
  --color-link: #6eb5ff;
  --color-input-border: #d8d8d8;
  --color-input-placeholder: #999999;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  font-family: var(--font);
  background: var(--color-purple-deep);
  color: var(--color-text);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-instaforex .site-header {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.page-instaforex .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.page-instaforex .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.page-instaforex .logo img {
  display: block;
  height: 42px;
  width: auto;
}

.page-instaforex .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.page-instaforex .main-nav a {
  color: var(--color-nav);
  font-size: 0.875rem;
  white-space: nowrap;
}

.page-instaforex .main-nav a:hover {
  color: #000000;
}

.page-instaforex .lang-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.75rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: #ffffff;
  color: #333333;
  font-size: 0.875rem;
  cursor: pointer;
  flex-shrink: 0;
}

.page-instaforex .lang-select .flag {
  width: 20px;
  height: 14px;
  border-radius: 1px;
  overflow: hidden;
}

.page-instaforex .lang-select .chevron {
  width: 10px;
  height: 10px;
  opacity: 0.6;
}

.page-instaforex .hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #4a2288 0%,
    var(--color-purple-top) 18%,
    var(--color-purple-mid) 55%,
    var(--color-purple-deep) 100%
  );
}

.page-instaforex .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-instaforex .hero-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.page-instaforex .hero-bg__glow--1 {
  width: 400px;
  height: 400px;
  background: #6b3fa0;
  top: 10%;
  left: 20%;
}

.page-instaforex .hero-bg__glow--2 {
  width: 300px;
  height: 300px;
  background: #4a2080;
  bottom: 5%;
  right: 15%;
}

.page-instaforex .hero-bg__chart {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke-width='1'%3E%3Crect x='80' y='320' width='18' height='80' fill='%23e74c3c'/%3E%3Cline x1='89' y1='300' x2='89' y2='420' stroke='%23e74c3c'/%3E%3Crect x='130' y='280' width='18' height='60' fill='%233498db'/%3E%3Cline x1='139' y1='260' x2='139' y2='360' stroke='%233498db'/%3E%3Crect x='180' y='250' width='18' height='100' fill='%23e74c3c'/%3E%3Cline x1='189' y1='230' x2='189' y2='360' stroke='%23e74c3c'/%3E%3Crect x='230' y='300' width='18' height='70' fill='%233498db'/%3E%3Cline x1='239' y1='280' x2='239' y2='380' stroke='%233498db'/%3E%3Crect x='280' y='220' width='18' height='120' fill='%23e74c3c'/%3E%3Cline x1='289' y1='200' x2='289' y2='350' stroke='%23e74c3c'/%3E%3Crect x='330' y='260' width='18' height='90' fill='%233498db'/%3E%3Cline x1='339' y1='240' x2='339' y2='360' stroke='%233498db'/%3E%3Crect x='380' y='200' width='18' height='140' fill='%23e74c3c'/%3E%3Cline x1='389' y1='180' x2='389' y2='350' stroke='%23e74c3c'/%3E%3Crect x='430' y='280' width='18' height='80' fill='%233498db'/%3E%3Cline x1='439' y1='260' x2='439' y2='370' stroke='%233498db'/%3E%3Crect x='480' y='240' width='18' height='110' fill='%23e74c3c'/%3E%3Cline x1='489' y1='220' x2='489' y2='360' stroke='%23e74c3c'/%3E%3Crect x='530' y='290' width='18' height='65' fill='%233498db'/%3E%3Cline x1='539' y1='270' x2='539' y2='365' stroke='%233498db'/%3E%3Crect x='580' y='210' width='18' height='130' fill='%23e74c3c'/%3E%3Cline x1='589' y1='190' x2='589' y2='350' stroke='%23e74c3c'/%3E%3Crect x='630' y='270' width='18' height='85' fill='%233498db'/%3E%3Cline x1='639' y1='250' x2='639' y2='365' stroke='%233498db'/%3E%3Crect x='680' y='230' width='18' height='105' fill='%23e74c3c'/%3E%3Cline x1='689' y1='210' x2='689' y2='345' stroke='%23e74c3c'/%3E%3Crect x='730' y='300' width='18' height='55' fill='%233498db'/%3E%3Cline x1='739' y1='280' x2='739' y2='365' stroke='%233498db'/%3E%3Crect x='780' y='250' width='18' height='95' fill='%23e74c3c'/%3E%3Cline x1='789' y1='230' x2='789' y2='355' stroke='%23e74c3c'/%3E%3Crect x='830' y='280' width='18' height='70' fill='%233498db'/%3E%3Cline x1='839' y1='260' x2='839' y2='360' stroke='%233498db'/%3E%3Crect x='880' y='200' width='18' height='130' fill='%23e74c3c'/%3E%3Cline x1='889' y1='180' x2='889' y2='340' stroke='%23e74c3c'/%3E%3Crect x='930' y='260' width='18' height='85' fill='%233498db'/%3E%3Cline x1='939' y1='240' x2='939' y2='355' stroke='%233498db'/%3E%3Crect x='980' y='220' width='18' height='110' fill='%23e74c3c'/%3E%3Cline x1='989' y1='200' x2='989' y2='340' stroke='%23e74c3c'/%3E%3Crect x='1030' y='290' width='18' height='60' fill='%233498db'/%3E%3Cline x1='1039' y1='270' x2='1039' y2='360' stroke='%233498db'/%3E%3Crect x='1080' y='240' width='18' height='100' fill='%23e74c3c'/%3E%3Cline x1='1089' y1='220' x2='1089' y2='350' stroke='%23e74c3c'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
}

.page-instaforex .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 6vw, 4rem);
  padding-bottom: max(clamp(2rem, 6vw, 4rem), env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.page-instaforex .hero-content {
  min-width: 0;
}

.page-instaforex .hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.375rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-text);
  margin-bottom: 1rem;
  max-width: 22ch;
}

.page-instaforex .hero-content .lead {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 400;
  color: var(--color-text-sub);
  margin-bottom: 2rem;
  max-width: 34ch;
  line-height: 1.45;
}

.page-instaforex .awards {
  background: rgba(10, 5, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  backdrop-filter: blur(4px);
  max-width: 520px;
}

.page-instaforex .awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem 1.5rem;
}

.page-instaforex .award-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.page-instaforex .award-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.page-instaforex .award-text {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.page-instaforex .reg-form-wrap {
  width: 100%;
  max-width: 380px;
  justify-self: end;
  min-width: 0;
}

.page-instaforex .reg-form {
  background: var(--color-purple-form);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-instaforex .reg-form__head {
  position: relative;
  background: var(--color-purple-form-head);
  padding: 1.375rem 1.5rem 1.625rem;
  text-align: center;
}

.page-instaforex .reg-form__head h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.page-instaforex .reg-form__head p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.page-instaforex .reg-form__head::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid var(--color-purple-form-head);
}

.page-instaforex .reg-form__body {
  padding: 1.375rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-instaforex .field input,
.page-instaforex .field select {
  width: 100%;
  min-height: 44px;
  height: 44px;
  padding: 0 0.875rem;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
  outline: none;
}

.page-instaforex .field input::placeholder {
  color: var(--color-input-placeholder);
}

.page-instaforex .field input:focus,
.page-instaforex .field select:focus {
  border-color: #aaaaaa;
}

.page-instaforex .field--error input,
.page-instaforex .field--error select {
  border-color: #ff6b6b;
}

.page-instaforex .field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: #ff8a8a;
  line-height: 1.3;
}

.page-instaforex .field-error--terms {
  margin-top: -0.25rem;
}

.page-instaforex .form-message {
  padding: 0.625rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.page-instaforex .form-message--error {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ffb4b4;
}

.page-instaforex .form-message--success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #9dffbf;
}

.page-instaforex .field--country select,
.page-instaforex .field--phone-code select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
  padding-right: 2rem;
}

.page-instaforex .field--country select {
  padding-left: 2.75rem;
  background-position: right 0.75rem center, left 0.75rem center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("../img/canada.png");
  background-size: 10px, 20px 14px;
  background-repeat: no-repeat, no-repeat;
}

.page-instaforex .phone-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.5rem;
}

.page-instaforex .field--phone-code select {
  padding-left: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("../img/canada.png");
  background-size: 10px, 18px 12px;
  background-repeat: no-repeat, no-repeat;
  background-position: right 0.5rem center, left 0.5rem center;
  font-size: 0.8125rem;
}

.page-instaforex .agreement {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.page-instaforex .agreement input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #2ecc71;
  cursor: pointer;
}

.page-instaforex .agreement label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  cursor: pointer;
}

.page-instaforex .agreement a {
  color: var(--color-link);
  text-decoration: underline;
}

.page-instaforex .btn-register {
  width: 100%;
  min-height: 48px;
  height: 48px;
  margin-top: 0.375rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #ef3d52 0%, var(--color-red-btn) 40%, var(--color-red-dark) 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 46, 67, 0.4);
  transition: filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.page-instaforex .btn-register:hover {
  filter: brightness(1.06);
}

.page-instaforex .btn-register:active {
  filter: brightness(0.95);
}

@media (max-width: 960px) {
  .page-instaforex .hero-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .page-instaforex .hero-content {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .page-instaforex .hero-content h1,
  .page-instaforex .hero-content .lead {
    max-width: none;
  }

  .page-instaforex .awards {
    max-width: none;
  }

  .page-instaforex .reg-form-wrap {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .page-instaforex .main-nav {
    display: none;
  }

  .page-instaforex .header-inner {
    padding: 0.75rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .page-instaforex .logo img {
    height: 36px;
  }

  .page-instaforex .lang-select {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
  }

  .page-instaforex .hero-inner {
    padding-top: 1.25rem;
    gap: 1.25rem;
  }

  .page-instaforex .hero-content h1 br {
    display: none;
  }

  .page-instaforex .hero-content h1 {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
    line-height: 1.25;
  }

  .page-instaforex .hero-content .lead {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .page-instaforex .hero-bg__glow--1 {
    width: 220px;
    height: 220px;
  }

  .page-instaforex .hero-bg__glow--2 {
    width: 180px;
    height: 180px;
  }

  .page-instaforex .awards {
    padding: 1rem 1.125rem;
  }

  .page-instaforex .reg-form {
    border-radius: 12px;
  }

  .page-instaforex .reg-form__head {
    padding: 1.125rem 1rem 1.375rem;
  }

  .page-instaforex .reg-form__head h2 {
    font-size: 1.25rem;
  }

  .page-instaforex .reg-form__body {
    padding: 1.125rem 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .page-instaforex .awards-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .page-instaforex .award-icon {
    width: 36px;
    height: 36px;
  }

  .page-instaforex .phone-row {
    grid-template-columns: 82px 1fr;
    gap: 0.375rem;
  }

  .page-instaforex .agreement label {
    font-size: 0.6875rem;
  }
}

@media (max-width: 360px) {
  .page-instaforex .lang-select span {
    display: none;
  }

  .page-instaforex .phone-row {
    grid-template-columns: 1fr;
  }

  .page-instaforex .field--phone-code select {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-instaforex .btn-register {
    transition: none;
  }
}
