:root {
  --navy: #1d2853;
  --navy-2: #172147;
  --text: #2c3240;
  --muted: #5f6470;
  --line: #e7e7ec;
  --accent: #168bff;
  --danger: #ff4050;
  --field: #fdfdfd;
  --soft: #f8f9fd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: .4px;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.desktop-blocker { display: none; }
.mobile-shell { min-height: 100vh; background: #fff; }

.site-header {
  background: var(--navy);
  color: #fff;
  min-height: 122px;
  position: relative;
}
.header-inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
}
.brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 76px);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}
.brand-title {
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: .8px;
  opacity: .98;
}
.brand.logo-only .brand-title { display: none; }
.brand.fallback-title .brand-title { display: block; }
.brand.has-title {
  gap: 12px;
}
.brand.has-title .brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}
.hamburger {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 5px;
  background: #fff;
}

.mobile-menu {
  display: none;
  padding: 22px 28px 38px;
  background: var(--navy);
}
.mobile-menu.is-open { display: block; }
.menu-search-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}
.search-pill {
  width: 315px;
  max-width: 50vw;
  height: 72px;
  border: 3px solid rgba(255,255,255,.24);
  border-radius: 44px;
  position: relative;
}
.search-pill::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 33px;
}
.search-pill::after {
  content: "";
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
  position: absolute;
  top: 44px;
  right: 23px;
}
.language-switch {
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
.language-switch button {
  background: none;
  border: 0;
  color: #fff;
  font-weight: 800;
  padding: 0;
}
.menu-list {
  display: grid;
  gap: 27px;
  padding-left: 13px;
}
.menu-list a {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-main {
  padding: 56px 28px 72px;
  background: #fff;
}
.logo-space {
  height: 44px;
  margin: -18px auto 20px;
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
.form-title {
  text-align: center;
  color: #171717;
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 500;
  margin: 0 0 48px;
}
.form-group { margin-bottom: 26px; }
.form-label {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #38404f;
  margin-bottom: 14px;
  letter-spacing: 1.1px;
}
.form-control {
  width: 100%;
  height: 56px;
  border: 1px solid #dfe0e4;
  background: var(--field);
  border-radius: 7px;
  color: #5b6068;
  font-size: 21px;
  padding: 0 18px;
  outline: none;
}
.form-control:focus {
  border-color: #b7c3e2;
  box-shadow: 0 0 0 3px rgba(29,40,83,.08);
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  line-height: 1.5;
  color: #333843;
  margin: 28px 0 24px;
}
.checkbox-row input {
  width: 22px;
  height: 22px;
  margin-top: 5px;
  accent-color: #168bff;
  flex: 0 0 auto;
}
.info-copy {
  font-size: 23px;
  line-height: 1.65;
  color: #6a4a85;
  margin: 28px 0 58px;
  letter-spacing: 1px;
}
.primary-btn {
  border: 0;
  min-width: 170px;
  height: 56px;
  border-radius: 6px;
  background: var(--navy-2);
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0 30px;
}
.primary-btn:active { transform: translateY(1px); }
.primary-btn[disabled] { opacity: .55; }
.inline-alert {
  display: none;
  margin-top: 24px;
  padding: 16px 18px;
  background: #f1f6ff;
  border-left: 4px solid var(--accent);
  color: #273050;
  line-height: 1.45;
  font-size: 18px;
}
.inline-alert.is-visible { display: block; }

.payment-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.22;
  letter-spacing: 4px;
  color: #080808;
  font-weight: 500;
  margin: 20px 0 88px;
  text-transform: uppercase;
}
.payment-panel {
  color: #111;
}
.payment-label {
  font-size: 43px;
  line-height: 1.2;
  font-weight: 200;
  margin: 0 0 32px;
}
.payment-name {
  font-size: 45px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 36px;
  word-break: break-word;
}
.payment-subline {
  font-size: 25px;
  color: #292929;
  margin-bottom: 30px;
}
.payment-row {
  font-size: 21px;
  line-height: 1.55;
  margin: 12px 0;
}
.payment-row strong { font-weight: 500; }
.payment-note {
  color: #31343d;
  font-size: 19px;
  line-height: 1.6;
  margin: 22px 0 26px;
}
.thin-line {
  height: 1px;
  background: var(--line);
  margin: 34px 0 30px;
}
.example-line {
  font-size: 21px;
  font-weight: 800;
  color: #2c2f37;
  margin-bottom: 36px;
}
.notice-card {
  position: relative;
  padding: 28px 32px 30px 36px;
  border-left: 5px solid #1396ff;
  border-radius: 14px;
  background: #fbfcff;
  box-shadow: 0 15px 38px rgba(16, 28, 73, .09);
  color: #252c47;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0 0 34px;
}
.confirm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.timer-box {
  width: 136px;
  height: 78px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 2px;
}
.confirm-row .primary-btn {
  height: 56px;
  min-width: 170px;
  font-weight: 500;
}
.result-card {
  text-align: left;
  background: #fff;
  border: 1px solid #e5e8f0;
  box-shadow: 0 15px 35px rgba(22,34,74,.08);
  border-radius: 18px;
  padding: 34px 26px;
  margin: 20px 0 38px;
}
.result-card h1 {
  margin: 0 0 18px;
  color: #171717;
  font-size: 25px;
  letter-spacing: 1.5px;
}
.result-card p {
  margin: 0;
  color: #505766;
  font-size: 23px;
  line-height: 1.55;
}
.saved-summary {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e7e7ec;
  color: #31343d;
  font-size: 20px;
  line-height: 1.65;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 46px 28px 80px;
}
.footer-contact {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-line {
  display: grid;
  grid-template-columns: 28px auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 19px;
  line-height: 1.45;
}
.contact-line strong {
  color: #fff;
  font-weight: 800;
}
.contact-icon {
  color: var(--danger);
  font-size: 24px;
  line-height: 1;
}
.footer-section {
  display: grid;
  gap: 19px;
  margin-top: 24px;
}
.footer-section h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 6px;
}
.footer-section a {
  color: rgba(255,255,255,.72);
  font-size: 22px;
  line-height: 1.25;
}

.press-main {
  min-height: 100vh;
  background: #f4f6fb;
  padding: 28px;
  color: #202638;
}
.press-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(24,35,79,.12);
}
.press-card h1 {
  margin: 0 0 10px;
  font-size: 30px;
}
.press-card p {
  color: #60697a;
  line-height: 1.55;
}
.press-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.press-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.press-form input,
.press-form textarea {
  width: 100%;
  border: 1px solid #d9deea;
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 16px;
}
.press-form textarea { min-height: 90px; resize: vertical; }
.press-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.press-btn {
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-weight: 800;
}
.press-link {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: #e8ecf8;
  color: #1c2854;
  padding: 14px 18px;
  font-weight: 800;
}
.press-message {
  border-radius: 12px;
  padding: 14px 16px;
  background: #eef7f1;
  color: #1d6637;
  margin-top: 16px;
}
.press-error {
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff0f0;
  color: #8b1d1d;
  margin-top: 16px;
}


.submissions-block {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e6eaf3;
}
.submissions-block h2 {
  margin: 0 0 16px;
  font-size: 24px;
}
.submissions-list {
  display: grid;
  gap: 12px;
}
.submission-card {
  border: 1px solid #dfe4ef;
  border-radius: 14px;
  padding: 14px;
  background: #fbfcff;
  display: grid;
  gap: 7px;
  line-height: 1.35;
  font-size: 15px;
}
.submission-card strong { color: #202638; }
.submission-meta {
  color: #697386;
  font-size: 13px;
}
.submission-empty {
  color: #697386;
  background: #f7f9fe;
  border: 1px dashed #cad2e3;
  border-radius: 12px;
  padding: 16px;
}

@media (min-width: 769px) {
  body { background: #eff2f7; }
  .desktop-blocker {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    color: #1e284f;
  }
  .desktop-blocker div {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(24,35,79,.12);
    display: grid;
    gap: 10px;
  }
  .desktop-blocker strong { font-size: 19px; }
  .desktop-blocker span { color: #5f6470; line-height: 1.5; }
  .mobile-shell { display: none; }
}

@media (max-width: 420px) {
  .site-header, .header-inner { min-height: 118px; }
  .header-inner { padding-left: 24px; padding-right: 24px; }
  .brand { height: 78px; max-width: calc(100% - 70px); }
  .brand-logo { max-height: 78px; }
  .brand-title { font-size: 18px; }
  .brand.has-title .brand-logo { width: 56px; height: 56px; flex-basis: 56px; }
  .page-main { padding: 52px 28px 70px; }
  .form-title { font-size: 21px; letter-spacing: 3.5px; margin-bottom: 44px; }
  .form-label { font-size: 21px; }
  .form-control { font-size: 20px; height: 54px; }
  .checkbox-row { font-size: 19px; }
  .info-copy { font-size: 22px; }
  .payment-title { font-size: 38px; margin-bottom: 78px; }
  .payment-label { font-size: 39px; }
  .payment-name { font-size: 41px; }
  .payment-subline { font-size: 23px; }
  .payment-row { font-size: 20px; }
  .payment-note { font-size: 22px; }
  .example-line { font-size: 20px; }
  .notice-card { font-size: 21px; padding: 26px 28px 28px 34px; }
  .timer-box { width: 132px; height: 76px; font-size: 26px; }
  .confirm-row .primary-btn { min-width: 165px; }
  .footer-section a { font-size: 20px; }
}
