:root {
  --green: #00a86b;
  --green-hover: #008f5b;
  --deep: #123c31;
  --deep-2: #0b2b23;
  --mint: #8ee1b9;
  --pale: #eaf8f1;
  --soft: #f4f5f6;
  --white: #fff;
  --ink: #16241f;
  --muted: #607069;
  --line: #dfe8e3;
  --danger: #bd3f32;
  --warning: #9a6500;
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 26px 80px rgba(18, 60, 49, .11);
  --shadow-sm: 0 12px 32px rgba(18, 60, 49, .08);
  --shell: 1480px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { min-width: 320px; min-height: 100vh; margin: 0; overflow-x: hidden; display: flex; flex-direction: column; color: var(--ink); background: var(--soft); font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body > main { width: 100%; flex: 1 0 auto; }
body.drawer-open, body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 5.5vw, 78px); }
h2 { font-size: clamp(36px, 4.4vw, 58px); }
h3 { font-size: clamp(28px, 3vw, 40px); }
h4 { font-size: 23px; }
p { color: var(--muted); }
[hidden] { display: none !important; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 2000; top: -80px; left: 18px; padding: 12px 18px; border-radius: 12px; color: #fff; background: var(--deep); }
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid #ff927c; outline-offset: 3px; }
.contact-icons { display: flex; align-items: center; gap: 8px; }
.contact-icon-link { width: 48px !important; height: 48px !important; min-width: 48px; min-height: 48px; max-width: 48px; max-height: 48px; flex: 0 0 48px; overflow: hidden; padding: 0; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 12px; background: transparent; box-shadow: none; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.contact-icon-link:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 20px rgba(18,60,49,.13); }
.contact-icon-link:active { transform: scale(.98); }
.contact-icon-link img { width: 48px !important; height: 48px !important; max-width: 48px !important; max-height: 48px !important; object-fit: contain !important; display: block; }

/* Header */
.site-header { position: sticky; z-index: 500; top: 6px; padding-top: 6px; background: transparent; }
.header-row { min-height: 72px; padding: 8px 16px; display: flex; align-items: center; gap: 24px; border: 1px solid rgba(223,232,227,.82); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 14px 45px rgba(18,60,49,.08); backdrop-filter: blur(18px); }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; }
.brand-mark { width: 39px; height: 39px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 8px; border-radius: 50%; background: var(--green); }
.brand-mark i { width: 5px; display: block; border-radius: 4px; background: #fff; }.brand-mark i:nth-child(1) { height: 10px; }.brand-mark i:nth-child(2) { height: 17px; }.brand-mark i:nth-child(3) { height: 23px; }
.brand-name { color: var(--green-hover); font-size: 20px; font-weight: 900; letter-spacing: -.045em; text-transform: uppercase; }
.program-name { margin-left: 3px; padding-left: 12px; border-left: 1px solid var(--line); color: var(--green-hover); font-size: 15px; font-weight: 800; }
.main-nav { min-width: 0; margin-left: auto; display: flex; align-items: center; gap: 20px; }
.main-nav a, .main-nav button { padding: 8px 0; border: 0; color: #31433c; background: transparent; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.main-nav a:hover, .main-nav button:hover { color: var(--green-hover); }
.header-contacts { padding-left: 14px; border-left: 1px solid var(--line); }.procedure-header-contacts { margin-left: auto; }
.menu-toggle { width: 44px; height: 44px; margin-left: auto; padding: 10px; display: none; border: 0; border-radius: 14px; background: var(--soft); cursor: pointer; }
.menu-toggle > span { width: 22px; height: 2px; margin: 4px 0; display: block; border-radius: 3px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Shared controls */
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 25px; border: 1px solid var(--green); border-radius: 17px; color: #fff; background: var(--green); font-weight: 800; line-height: 1.2; text-align: center; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--green-hover); border-color: var(--green-hover); box-shadow: 0 12px 28px rgba(0,168,107,.2); }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.button-small { min-height: 44px; padding: 10px 17px; border-radius: 14px; font-size: 13px; }
.button-outline { color: var(--deep); border-color: var(--line); background: #fff; }.button-outline:hover { color: #fff; border-color: var(--deep); background: var(--deep); box-shadow: none; }
.button-white { color: var(--deep); border-color: #fff; background: #fff; }.button-white:hover { color: var(--deep); border-color: var(--mint); background: var(--mint); }
.button-wide { width: 100%; }
.kicker { margin-bottom: 14px; display: block; color: var(--green-hover); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.kicker-light { color: var(--mint); }
.back-button { padding: 9px 4px; border: 0; color: var(--green-hover); background: transparent; font-weight: 800; cursor: pointer; }

/* Hero */
.hero { padding: 28px 0 44px; }
.hero-card { position: relative; min-height: 650px; overflow: hidden; display: flex; align-items: center; border-radius: 46px; color: #fff; background: #05392e; box-shadow: 0 30px 90px rgba(5,45,35,.16); isolation: isolate; }
.hero-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 62% 18%, rgba(20,190,116,.25), transparent 30%), linear-gradient(90deg, #06392f 0%, #06392f 47%, rgba(6,57,47,.77) 60%, rgba(6,57,47,.08) 100%); }
.hero-visual { position: absolute; z-index: -2; inset: 0 0 0 auto; width: 68%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.94) contrast(1.03); }
.hero-content { width: min(61%, 800px); padding: clamp(42px, 5.2vw, 78px); }
.hero-content > .kicker { width: fit-content; padding: 9px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); }
.hero-content h1 { margin-bottom: 24px; color: #fff; }
.hero-content h1 em { color: var(--mint); font-style: normal; }
.hero-content > p { max-width: 690px; margin-bottom: 38px; color: #d3e7de; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { max-width: 720px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.button-glow { min-height: 66px; padding-inline: 22px; border-color: #0fd57f; color: #fff; background: linear-gradient(135deg, #0aca74, #00a85f); box-shadow: 0 0 0 1px rgba(142,225,185,.3), 0 10px 34px rgba(0,220,128,.36); }
.button-glow:hover { color: #fff; border-color: #25e48d; background: linear-gradient(135deg, #13d981, #00b86c); box-shadow: 0 0 38px rgba(40,235,145,.52); }.button-glow-outline { border-color: rgba(255,255,255,.8); color: #fff; background: rgba(4,45,36,.45); box-shadow: 0 0 26px rgba(38,227,139,.14); }.button-glow-outline:hover { border-color: #25e48d; background: rgba(0,168,107,.76); }

/* Flow */
.service-section { padding: 78px 0 110px; }
.service-heading { margin-bottom: 36px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.service-heading h2 { margin-bottom: 0; }.service-heading p { margin: 0 0 7px; font-size: 17px; }
.flow-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.progress-wrap { min-height: 92px; padding: 20px 30px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); background: #fbfdfc; }
.progress { min-width: 0; margin: 0; padding: 0; flex: 1; display: flex; align-items: center; list-style: none; counter-reset: item; }
.progress li { position: relative; min-width: 0; flex: 1; display: flex; align-items: center; gap: 10px; color: #8a9691; font-size: 12px; font-weight: 750; }
.progress li:not(:last-child)::after { content: ""; height: 2px; flex: 1; margin-right: 10px; background: var(--line); }
.progress li i { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; background: #fff; font-style: normal; }
.progress li.is-current { color: var(--deep); }.progress li.is-current i { color: #fff; border-color: var(--green); background: var(--green); box-shadow: 0 0 0 6px rgba(0,168,107,.1); }
.progress li.is-done { color: var(--green-hover); }.progress li.is-done i { color: #fff; border-color: var(--deep); background: var(--deep); }.progress li.is-done:not(:last-child)::after { background: var(--green); }
.flow-step { min-height: 420px; padding: clamp(34px, 5vw, 64px); animation: fade-up .3s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step-copy { max-width: 680px; margin-bottom: 34px; }.step-copy h3 { margin-bottom: 15px; }.step-copy p { margin-bottom: 0; font-size: 17px; }
.step-number { margin-bottom: 12px; display: block; color: var(--green-hover); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.compact-form { max-width: 770px; padding: 26px; border-radius: 26px; background: var(--soft); }
.compact-form > label, .order-form > label:not(.check), .admin-card label:not(.check) { margin-bottom: 9px; display: block; color: #34463f; font-size: 13px; font-weight: 800; }
.input-button { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 7px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; outline: 0; color: var(--ink); background: #fff; }
input, select { height: 52px; padding: 0 15px; } textarea { padding: 13px 15px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,168,107,.1); }
.input-button input { border: 0; box-shadow: none; }.input-button input:focus { box-shadow: none; }
.form-message { min-height: 22px; margin: 10px 2px 0; color: var(--danger); font-size: 13px; font-weight: 750; }.form-message.is-success { color: var(--green-hover); }
.step-heading { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }.step-heading h3 { margin: 0; }.step-heading > p { margin: 0 0 7px; }
.tariff-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }.tariff-grid[data-count="1"] { grid-template-columns: minmax(280px, 520px); }.tariff-grid[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }.tariff-grid[data-count="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }.tariff-grid[data-count="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tariff-card { min-width: 0; min-height: 400px; padding: 22px; display: flex; flex-direction: column; border: 2px solid var(--line); border-radius: 24px; background: #fff; cursor: pointer; transition: transform .2s, color .2s, background-color .2s, border-color .2s, box-shadow .2s; }
.tariff-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-sm); }.tariff-card.is-selected { border-color: var(--deep); color: #fff; background: var(--deep); box-shadow: 0 16px 46px rgba(4,49,38,.25); }
.tariff-card:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.tariff-card.is-selected .tariff-description, .tariff-card.is-selected .tariff-price small, .tariff-card.is-selected .tariff-features li, .tariff-card.is-selected .tariff-extra { color: #c7ddd4; }.tariff-card.is-selected .tariff-price, .tariff-card.is-selected .tariff-features strong { color: #fff; }.tariff-card.is-selected .tariff-features { border-color: rgba(255,255,255,.2); }
.demo-badge { align-self: flex-start; padding: 5px 8px; border-radius: 7px; color: #815c00; background: #fff1c7; font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.tariff-card h4 { margin: 16px 0 7px; font-size: 24px; }.tariff-card .tariff-description { min-height: 50px; margin-bottom: 16px; font-size: 12px; }
.tariff-price { margin-bottom: 16px; color: var(--ink); }.tariff-price strong { font-size: 32px; }.tariff-price small { color: var(--muted); }
.tariff-features { margin: 0 0 16px; padding: 14px 0; display: grid; gap: 8px; border-block: 1px solid var(--line); list-style: none; }.tariff-features li { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; }.tariff-features strong { color: var(--ink); font-size: 18px; line-height: 1.2; }
.tariff-extra { margin-bottom: 14px; color: var(--muted); font-size: 11px; }.tariff-card-action { width: 100%; min-height: 46px; margin-top: auto; padding: 11px 14px; pointer-events: none; }.tariff-card.is-selected .tariff-card-action { color: var(--deep); background: var(--mint); box-shadow: none; }
.step-navigation { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }.step-navigation .button { width: min(220px, 46%); min-height: 54px; }.step-navigation-single { justify-content: flex-start; }.order-navigation { margin-top: 22px; }.order-navigation .button { flex: 1; width: auto; }
.not-found { max-width: 760px; margin: 12px auto; padding: 44px; border-radius: 30px; background: var(--pale); text-align: center; }.not-found-icon { width: 60px; height: 60px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 20px; color: #fff; background: var(--green); font-size: 28px; font-weight: 850; }.not-found h3 { font-size: 30px; }.contact-buttons { flex-wrap: wrap; justify-content: center; }.contact-image-row { gap: 8px; }
.connection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.connection-card, .procedure-choice-card { min-width: 0; overflow: hidden; display: grid; align-items: center; border: 2px solid var(--line); border-radius: 30px; color: var(--ink); background: #fff; text-align: left; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.connection-card { width: 100%; aspect-ratio: 2.25 / 1; padding: 0; display: block; touch-action: manipulation; }
.connection-card > * { pointer-events: none; }
.procedure-choice-card { padding: 0; grid-template-columns: 210px 1fr auto; gap: 24px; }
.connection-card:hover, .procedure-choice-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-sm); }.connection-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; background: #fff; }.procedure-choice-card img { width: 210px; height: 190px; object-fit: cover; object-position: center; background: var(--deep); }.procedure-choice-card span { min-width: 0; display: grid; gap: 8px; }.procedure-choice-card strong { font-size: 24px; }.procedure-choice-card small { color: var(--muted); font-size: 14px; }.procedure-choice-card > b { padding-right: 26px; color: var(--green); font-size: 26px; }
.number-step-heading { padding: 18px 20px; align-items: center; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); }.number-step-heading .step-number { margin-bottom: 6px; }.region-button { min-width: 310px; padding: 14px 17px; display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; border: 1px solid #b8d9ca; border-radius: 17px; color: var(--ink); background: #fff; text-align: left; cursor: pointer; box-shadow: 0 8px 24px rgba(11,74,57,.08); transition: border-color .18s, transform .18s, box-shadow .18s; }.region-button:hover { transform: translateY(-2px); border-color: var(--green); box-shadow: 0 11px 28px rgba(11,74,57,.13); }.region-button span { color: var(--muted); font-size: 11px; }.region-button strong { max-width: 260px; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }.region-button b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--green); font-size: 25px; }
.number-tools { margin-bottom: 24px; display: flex; justify-content: space-between; gap: 18px; }.search { width: min(100%, 390px); }.pills { padding: 5px; display: flex; gap: 5px; border-radius: 14px; background: var(--soft); }.pills button { min-height: 42px; padding: 9px 15px; border: 0; border-radius: 10px; color: var(--muted); background: transparent; font-weight: 750; cursor: pointer; }.pills button.is-active { color: #fff; background: var(--deep); }
.numbers-title { margin-bottom: 18px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }.numbers-title h4 { margin: 0; }
.number-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }.number-card { min-width: 0; padding: 22px; border: 2px solid transparent; border-radius: 23px; background: var(--soft); transition: border-color .2s, box-shadow .2s; }.number-card:hover { border-color: #b9dcca; }.number-card.is-selected { border-color: var(--green); box-shadow: 0 12px 30px rgba(0,168,107,.13); }.number-card-head { display: flex; justify-content: space-between; gap: 8px; }.number-card-head span { padding: 5px 8px; border-radius: 7px; color: var(--green-hover); background: var(--pale); font-size: 10px; font-weight: 850; }.number-card-head .demo-badge { color: #815c00; background: #fff1c7; }.number-card h4 { margin: 25px 0 6px; font-size: 25px; white-space: nowrap; }.number-card p { margin-bottom: 22px; color: var(--green-hover); font-size: 12px; font-weight: 750; }.number-card .button { width: 100%; min-height: 46px; }
.empty-state { padding: 52px 24px; border-radius: 28px; background: var(--soft); text-align: center; }.empty-state h4 { margin-bottom: 10px; }.empty-state p { margin-bottom: 20px; }
.order-layout { max-width: 920px; margin: 0 auto; padding: clamp(28px, 4vw, 54px); display: grid; grid-template-columns: 1fr; gap: 30px; border: 1px solid var(--line); border-radius: 36px; background: #fff; box-shadow: var(--shadow-sm); }.order-summary { padding: 0 0 32px; border-bottom: 1px dashed #cfd9d4; color: var(--ink); background: #fff; }.order-summary > h3 { margin-bottom: 30px; font-size: clamp(34px,4vw,48px); }.summary-number, .summary-tariff { padding: 0; border-radius: 0; background: transparent; }.summary-number { margin-bottom: 24px; display: grid; gap: 7px; }.summary-number span, .summary-tariff > span { color: var(--muted); font-size: 13px; }.summary-number strong { color: var(--ink); font-size: clamp(30px,4vw,44px); letter-spacing: .015em; }.summary-tariff h4 { margin: 8px 0; color: var(--ink); font-size: 24px; }.summary-tariff > strong { color: var(--green-hover); font-size: 21px; }.summary-tariff ul { margin: 18px 0 0; padding: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px 20px; border-top: 1px solid var(--line); list-style: none; }.summary-tariff li { color: var(--muted); font-size: 14px; }
.order-form { padding: clamp(24px,3vw,34px); border: 1px solid #dcece4; border-radius: 28px; background: linear-gradient(135deg,#f2faf6,#f8fbf9); }.order-form h3 { margin-bottom: 12px; }.order-form > p { margin-bottom: 26px; }.order-form > input { margin-bottom: 18px; border-color: var(--green); background: #fff; }.order-form > .button { min-height: 66px; border-radius: 19px; box-shadow: 0 12px 30px rgba(0,168,107,.18); }.check { margin: 4px 0 22px; display: flex !important; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; cursor: pointer; }.check input { width: 18px; height: 18px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--green); }.check a { color: var(--green-hover); text-decoration: underline; text-underline-offset: 3px; }
.success-step { text-align: center; }.success-icon { width: 78px; height: 78px; margin: 12px auto 24px; display: grid; place-items: center; border-radius: 27px; color: #fff; background: var(--green); font-size: 38px; font-weight: 850; }.success-step h3 { margin-bottom: 15px; }.success-step > p { max-width: 680px; margin-inline: auto; font-size: 18px; }.dev-notice { padding: 12px 18px; border-radius: 14px; color: var(--warning) !important; background: #fff4d5; font-size: 13px !important; }.success-actions { margin-top: 26px; display: flex; justify-content: center; gap: 10px; }

/* Drawer and contacts */
.drawer-backdrop { position: fixed; z-index: 900; inset: 0; background: rgba(5,24,18,.5); opacity: 0; transition: opacity .25s; }.drawer-backdrop.is-visible { opacity: 1; }
.region-drawer { position: fixed; z-index: 1000; top: 22px; bottom: 22px; left: 22px; width: min(430px, calc(100vw - 44px)); padding: 30px; display: flex; flex-direction: column; border-radius: 30px; background: #fff; box-shadow: 20px 0 70px rgba(4,28,20,.25); transform: translateX(calc(-105% - 22px)); transition: transform .3s cubic-bezier(.2,.8,.2,1); }.region-drawer.is-open { transform: translateX(0); }.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }.drawer-head h2 { margin-bottom: 24px; font-size: 36px; }.close-button { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border: 0; border-radius: 14px; color: var(--ink); background: var(--soft); font-size: 28px; line-height: 1; cursor: pointer; }.drawer-search { margin-bottom: 18px; }.region-list { min-height: 0; overflow-y: auto; margin-right: -12px; padding-right: 12px; display: grid; align-content: start; gap: 4px; }.region-list button { width: 100%; padding: 14px 15px; border: 0; border-radius: 12px; color: var(--ink); background: transparent; text-align: left; cursor: pointer; }.region-list button:hover { background: var(--soft); }.region-list button.is-selected { color: var(--green-hover); background: var(--pale); font-weight: 800; }.region-list button small { float: right; color: var(--muted); }
.contact-dialog { width: min(520px, calc(100% - 28px)); padding: 38px; border: 0; border-radius: 30px; box-shadow: var(--shadow); }.contact-dialog::backdrop { background: rgba(5,24,18,.5); }.contact-dialog > .close-button { position: absolute; top: 18px; right: 18px; }.contact-dialog h2 { margin-bottom: 26px; font-size: 37px; }.contact-dialog > p { margin: 12px 0 0; color: var(--green-hover); font-size: 13px; font-weight: 750; text-align: center; }

/* Procedure and footer */
.procedure-teaser { padding: 0 0 110px; }.procedure-card { overflow: hidden; display: grid; grid-template-columns: 1fr .9fr; align-items: center; border-radius: var(--radius-xl); color: #fff; background: var(--deep); }.procedure-card > div:first-child { padding: clamp(36px, 5vw, 60px); }.procedure-card h2 { margin-bottom: 18px; }.procedure-card p { margin-bottom: 28px; color: #bcd6cb; font-size: 17px; }.procedure-previews { min-width: 0; padding: 34px 30px 34px 0; display: grid; gap: 14px; }.procedure-previews img { width: 100%; height: auto; min-height: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; object-fit: cover; box-shadow: 0 18px 42px rgba(0,0,0,.2); }.procedure-previews img:first-child { aspect-ratio: 2.25/1; }.procedure-previews img:last-child { aspect-ratio: 2.45/1; }
.site-footer { padding: 42px 0; color: #d8e7e1; background: var(--deep-2); }.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }.brand-footer .brand-name { color: #fff; }.brand-footer .program-name { border-color: rgba(255,255,255,.15); color: var(--mint); }.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px 20px; }.footer-links a, .footer-links button { padding: 0; border: 0; color: #a8c2b8; background: transparent; font-size: 13px; cursor: pointer; }
.page-hero { padding: 78px 0 55px; text-align: center; }.page-hero h1 { margin-bottom: 18px; }.page-hero p { font-size: 18px; }.procedure-service { padding: 0 0 100px; }.procedure-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }.procedure-choice-card { background: #fff; box-shadow: var(--shadow-sm); }.instruction { animation: fade-up .3s both; }.instruction-head { margin-bottom: 30px; text-align: center; }.instruction-head .back-button { margin-bottom: 28px; display: block; }.instruction > img { width: 100%; height: auto; aspect-ratio: auto; border-radius: var(--radius-xl); object-fit: contain; object-position: center; box-shadow: var(--shadow); }.instruction-steps { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; list-style: none; }.instruction-steps li { padding: 24px; display: flex; align-items: flex-start; gap: 13px; border-radius: 22px; background: #fff; }.instruction-steps li > b { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--green); }.instruction-steps span { display: grid; gap: 5px; color: var(--muted); font-size: 13px; }.instruction-steps strong { color: var(--ink); font-size: 15px; }
.legal-page { padding: 70px 0 100px; }.legal-card { max-width: 850px; padding: clamp(30px, 5vw, 60px); border-radius: var(--radius-xl); background: #fff; }.legal-card h1 { font-size: clamp(40px, 5vw, 62px); }.legal-card h2 { margin-top: 36px; font-size: 27px; }.legal-card p { font-size: 16px; }.legal-notice { margin-top: 34px; padding: 20px; border-radius: 18px; color: #755800; background: #fff4d1; }

/* Admin */
.admin-login-page { min-height: 100vh; padding: 40px 18px; display: grid; place-items: center; background: var(--pale); }.login-card { width: min(100%, 480px); padding: 42px; border-radius: 32px; background: #fff; box-shadow: var(--shadow); }.login-card .brand { margin-bottom: 52px; }.login-card h1 { margin-bottom: 28px; font-size: 40px; }.login-card form label { margin-bottom: 16px; display: grid; gap: 8px; font-size: 13px; font-weight: 800; }.back-link { margin-top: 24px; display: inline-block; color: var(--green-hover); font-size: 13px; font-weight: 750; }
.admin-page { background: #eef3f0; }.admin-header { min-height: 66px; padding: 12px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; background: var(--deep); }.admin-header > div { display: flex; align-items: center; gap: 16px; }.admin-header .brand-name { color: #fff; font-size: 22px; }.admin-header strong { color: #bcd6cb; font-size: 13px; }.admin-header a, .admin-header button { padding: 7px 0; border: 0; color: #d7e9e2; background: transparent; font-size: 13px; cursor: pointer; }.admin-main { width: min(calc(100% - 40px), 1500px); margin: 0 auto; padding: 45px 0 80px; }.admin-title { display: flex; justify-content: space-between; gap: 20px; }.admin-title h1 { margin-bottom: 24px; font-size: 45px; }.admin-title > p { font-size: 13px; font-weight: 750; }.admin-tabs { margin-bottom: 20px; padding: 6px; display: inline-flex; gap: 5px; border-radius: 16px; background: #dfe8e3; }.admin-tabs button { min-height: 42px; padding: 9px 18px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; font-weight: 750; cursor: pointer; }.admin-tabs button.is-active { color: #fff; background: var(--deep); }.admin-panel { display: grid; gap: 18px; }.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }.admin-grid-number { grid-template-columns: .72fr 1fr; }.admin-card { min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 8px 26px rgba(18,60,49,.05); }.admin-card h2 { margin-bottom: 22px; font-size: 25px; }.admin-card form { display: grid; gap: 13px; }.form-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.admin-form-actions { display: flex; gap: 9px; }.admin-check-list { display: flex; flex-wrap: wrap; gap: 8px; }.admin-check-list label { margin: 0 !important; padding: 8px 10px; display: flex !important; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; font-weight: 650 !important; }.admin-check-list input { width: 16px; height: 16px; accent-color: var(--green); }.table-card { padding: 0; overflow: hidden; }.table-head { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }.table-head h2 { margin: 0; }.table-head > div { display: flex; flex-wrap: wrap; gap: 8px; }.table-head > div:has(> h2) { display: block; }.table-head small { display: block; margin-top: 5px; color: var(--muted); }.table-scroll { overflow-x: auto; }.table-scroll table { width: 100%; border-collapse: collapse; }.table-scroll th, .table-scroll td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 13px; text-align: left; vertical-align: middle; }.table-scroll th { color: var(--muted); background: #fafcfb; font-size: 11px; text-transform: uppercase; }.table-scroll tbody tr:last-child td { border-bottom: 0; }.status { padding: 5px 8px; border-radius: 7px; font-size: 10px; font-weight: 850; }.status-available, .status-active { color: #087049; background: #dff6e9; }.status-reserved { color: #855e00; background: #fff1c6; }.status-disabled, .status-inactive { color: #8e3a30; background: #ffe2dc; }.row-actions { display: flex; justify-content: flex-end; gap: 6px; }.row-actions button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--deep); background: #fff; font-size: 11px; font-weight: 750; cursor: pointer; }.row-actions button.danger { color: var(--danger); }.file-button { position: relative; overflow: hidden; }.file-button input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }.file-button:has(input:disabled) { opacity: .55; cursor: wait; }.import-card { display: flex; flex-direction: column; align-items: flex-start; }.import-card p { font-size: 13px; }.import-card .button { width: 100%; margin-top: 8px; }.import-errors { width: calc(100% - 48px); max-height: 180px; margin: 16px 24px; overflow: auto; padding: 12px; border-radius: 12px; color: var(--danger); background: #fff1ef; font: 12px/1.5 Consolas, monospace; white-space: pre-wrap; }.import-card .import-errors { width: 100%; margin: 12px 0 0; }.admin-filters input, .admin-filters select { width: auto; min-width: 150px; height: 40px; }
[data-admin-status].is-success { color: #087049; }[data-admin-status].is-error { color: var(--danger); }

/* One-time personal-data form */
.secure-form-page { min-height: 100vh; background: #f3f6f4; }
.secure-form-shell { width: min(calc(100% - 28px), 760px); margin: 0 auto; padding: 42px 0 70px; }
.secure-form-card { padding: clamp(26px, 5vw, 52px); border-top: 7px solid var(--green); border-radius: 4px 4px 28px 28px; background: #fff; box-shadow: var(--shadow-sm); }
.secure-form-brand { margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.secure-form-card h1 { margin-bottom: 12px; font-size: clamp(32px, 6vw, 48px); }
.secure-form-card > p { color: var(--muted); }
.secure-form-card form { margin-top: 30px; display: grid; gap: 20px; }
.secure-field { display: grid; gap: 9px; }
.secure-field strong { color: var(--ink); font-size: 14px; }
.secure-field input, .secure-field textarea { width: 100%; border: 1px solid #b9c9c1; background: #fff; }
.secure-field textarea { min-height: 90px; resize: vertical; }
.fixed-value { min-height: 50px; padding: 13px 15px; display: block; border: 1px solid var(--line); border-radius: 13px; color: var(--deep); background: var(--soft); font-weight: 750; }
.secure-consent { margin: 4px 0 0; }
.secure-form-card form > .button { min-height: 58px; }
.secure-note { margin-top: 22px; font-size: 12px !important; }
.secure-success { text-align: center; }
.secure-success .button { margin-top: 24px; }

@media (max-width: 1180px) {
  .main-nav { gap: 12px; }.main-nav a, .main-nav button { font-size: 12px; }.header-contacts { display: none; }
  .hero-content { width: 68%; }.number-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 102px; }.header-row { min-height: 74px; }.menu-toggle { display: block; }.header-consult { display: none; }
  .main-nav { position: fixed; z-index: 600; top: 96px; right: 16px; left: 16px; max-height: calc(100vh - 112px); overflow-y: auto; margin: 0; padding: 16px; display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s, visibility .2s, transform .2s; }.main-nav.is-open { opacity: 1; visibility: visible; transform: none; }.main-nav a, .main-nav button { width: 100%; padding: 13px; border-radius: 11px; font-size: 15px; text-align: left; }.main-nav a:hover, .main-nav button:hover { background: var(--soft); }
  .hero-card { min-height: 680px; align-items: flex-end; }.hero-card::before { background: linear-gradient(0deg, var(--deep) 0%, var(--deep) 53%, rgba(18,60,49,.15) 85%); }.hero-visual { width: 100%; height: 100%; object-position: 66% center; }.hero-content { width: 100%; padding-top: 280px; }.service-heading { grid-template-columns: 1fr; gap: 8px; }
  .progress li span { display: none; }.progress li { gap: 8px; }.progress-wrap { min-height: 78px; }
  .tariff-grid[data-count] { grid-template-columns: repeat(2, minmax(0, 1fr)); }.connection-grid { grid-template-columns: 1fr; }.order-layout { grid-template-columns: 1fr; }
  .procedure-card { grid-template-columns: 1fr; }.procedure-previews { padding: 0 30px 34px; grid-template-columns: repeat(2,minmax(0,1fr)); }.instruction-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid, .admin-grid-number { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --radius-xl: 31px; --radius-lg: 24px; }.shell { width: min(calc(100% - 28px), var(--shell)); }.brand-name { font-size: 17px; }.program-name { padding-left: 9px; font-size: 13px; }.brand-mark { width: 35px; height: 35px; }
  .hero { padding: 14px 0 30px; }.hero-card { min-height: 690px; }.hero-content { padding: 250px 24px 30px; }.hero-content h1 { font-size: clamp(38px, 12vw, 54px); }.hero-content > p { font-size: 17px; }.hero-actions { grid-template-columns: 1fr; }.button-glow { min-height: 60px; }
  .service-section { padding: 50px 0 72px; }.service-heading { margin-bottom: 24px; }.service-heading p { font-size: 15px; }.flow-step { min-height: 390px; padding: 28px 20px; }.progress-wrap { padding: 16px 18px; flex-direction: column; align-items: stretch; gap: 5px; }.progress li:not(:last-child)::after { margin-right: 6px; }.progress li i { width: 28px; height: 28px; }.progress-wrap .back-button { align-self: flex-start; }
  .compact-form { padding: 18px; }.input-button { grid-template-columns: 1fr; }.input-button .button { width: 100%; }.step-heading { align-items: flex-start; flex-direction: column; gap: 14px; }.tariff-grid[data-count] { grid-template-columns: 1fr; }.tariff-card { min-height: 0; }.tariff-card .tariff-description { min-height: 0; }.step-navigation .button { width: min(190px, 47%); }.order-navigation .button { width: auto; }
  .connection-card { aspect-ratio: 2.25 / 1; border-radius: 22px; }.procedure-choice-card { grid-template-columns: 110px 1fr 24px; gap: 14px; }.procedure-choice-card img { width: 110px; height: 145px; }.procedure-choice-card strong { font-size: 19px; }.procedure-choice-card > b { padding-right: 6px; }.number-step-heading { padding: 16px; }.region-button { width: 100%; min-width: 0; }.region-button strong { max-width: 220px; }.number-tools { flex-direction: column; }.search { width: 100%; }.pills { overflow-x: auto; }.pills button { flex: 1 0 auto; }.number-grid { grid-template-columns: 1fr; }.number-card h4 { font-size: 26px; }.numbers-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .order-layout { padding: 24px 14px; border-radius: 28px; }.order-summary { padding: 0 6px 24px; }.order-form { padding: 24px 20px; }.summary-number strong { font-size: 27px; }.success-actions { align-items: stretch; flex-direction: column; }.success-actions .button { width: 100%; }
  .procedure-teaser { padding-bottom: 72px; }.procedure-card > div:first-child { padding: 34px 24px; }.procedure-previews { padding: 0 20px 26px; grid-template-columns: 1fr; }.footer-row { align-items: flex-start; flex-direction: column; }.footer-links { justify-content: flex-start; }
  .procedure-choice { grid-template-columns: 1fr; }.instruction-steps { grid-template-columns: 1fr; }.page-hero { padding: 54px 0 38px; }.procedure-service { padding-bottom: 70px; }
  .region-drawer { top: 6px; bottom: 6px; left: 6px; width: calc(100vw - 12px); padding: 24px 18px; border-radius: 24px; transform: translateX(calc(-105% - 6px)); }.drawer-head h2 { font-size: 31px; }.contact-dialog { padding: 34px 22px 26px; }
  .admin-header { align-items: flex-start; flex-direction: column; }.admin-main { width: min(calc(100% - 24px), 1500px); padding-top: 28px; }.admin-title { flex-direction: column; }.admin-tabs { width: 100%; overflow-x: auto; }.admin-tabs button { flex: 1 0 auto; }.admin-card { padding: 20px; }.form-two { grid-template-columns: 1fr; }.table-head { align-items: flex-start; flex-direction: column; }.admin-filters { width: 100%; flex-direction: column; }.admin-filters input, .admin-filters select { width: 100%; }.login-card { padding: 30px 22px; }
}

@media (max-width: 374px) {
  .shell { width: min(calc(100% - 20px), var(--shell)); }.brand-name { font-size: 16px; }.program-name { max-width: 72px; line-height: 1.05; }.hero-content { padding-inline: 18px; }.flow-step { padding-inline: 16px; }.connection-card { border-radius: 18px; }.procedure-choice-card { grid-template-columns: 88px 1fr 18px; }.procedure-choice-card img { width: 88px; }.number-card h4 { font-size: 23px; }.contact-buttons .button { width: 100%; }.step-navigation { gap: 10px; }.step-navigation .button { min-height: 50px; padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
