:root {
    --blue-950: #07336b;
    --blue-900: #0b448a;
    --blue-700: #0f64c7;
    --blue-100: #e9f3ff;
    --red-600: #e1262f;
    --orange-500: #ff8a1f;
    --green-600: #0f9f6e;
    --ink: #12223d;
    --muted: #60708a;
    --line: #dce6f3;
    --surface: #ffffff;
    --soft: #f4f8fd;
    --shadow: 0 20px 55px rgba(7, 51, 107, 0.14);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
}

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

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--blue-950);
    color: #fff;
    border-radius: 6px;
}

.skip-link:focus {
    left: 8px;
}

.topbar {
    background: var(--blue-950);
    color: #dcecff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar strong {
    color: #fff;
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 25px rgba(7, 51, 107, 0.08);
    backdrop-filter: blur(14px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), var(--red-600));
    font-weight: 800;
    letter-spacing: 0;
}

.brand strong {
    display: block;
    font-size: 19px;
    color: var(--blue-950);
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.primary-nav {
    flex: 1;
}

.site-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.site-menu a {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.site-menu a:hover,
.site-menu .current-menu-item > a {
    color: var(--red-600);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red-600), var(--orange-500));
    box-shadow: 0 14px 25px rgba(225, 38, 47, 0.22);
}

.btn-outline {
    color: var(--blue-950);
    background: #fff;
    border: 1px solid rgba(7, 51, 107, 0.18);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-950);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 138, 31, 0.2), transparent 22%),
        linear-gradient(135deg, #07336b 0%, #0f64c7 58%, #e7f2ff 58%, #fff 100%);
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: center;
    gap: 64px;
    min-height: 640px;
    padding: 56px 0 76px;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    color: #dcecff;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
    margin: 42px 0 0;
}

.hero-proof div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.hero-proof dt {
    font-size: 22px;
    font-weight: 800;
}

.hero-proof dd {
    margin: 2px 0 0;
    color: #dcecff;
    font-size: 13px;
}

.hero-card {
    position: relative;
    min-height: 420px;
    padding: 34px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--blue-100);
}

.slide {
    position: absolute;
    inset: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .35s ease, transform .35s ease;
}

.slide.is-active {
    opacity: 1;
    transform: translateX(0);
}

.slide span {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue-700);
    font-weight: 800;
}

.slide h2 {
    margin: 24px 0 12px;
    color: var(--blue-950);
    font-size: 34px;
    line-height: 1.18;
}

.slide p {
    color: var(--muted);
}

.slider-dots {
    position: absolute;
    left: 34px;
    bottom: 28px;
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 30px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #cbd8e8;
    cursor: pointer;
}

.slider-dots button.is-active {
    background: var(--red-600);
}

.intro-section,
.services-section,
.consult-section,
.pricing-section,
.page-content {
    padding: 86px 0;
}

.intro-grid,
.invoice-grid,
.consult-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 64px;
}

.intro-visual {
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue-100), #fff);
    border: 1px solid var(--line);
}

.token-illustration {
    position: relative;
    width: 250px;
    height: 320px;
    padding: 34px;
    border-radius: 28px 28px 90px 28px;
    background: linear-gradient(160deg, var(--blue-700), var(--blue-950));
    color: #fff;
    box-shadow: var(--shadow);
}

.token-illustration span {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff, #b7d8ff);
}

.token-illustration strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
}

.intro-copy h2,
.section-heading h2,
.invoice-section h2,
.consult-section h2 {
    margin: 0 0 16px;
    color: var(--blue-950);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
}

.intro-copy p,
.section-heading p,
.invoice-section p,
.consult-section p {
    margin: 0;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--red-600);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.services-section,
.pricing-section {
    background: var(--soft);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.price-card,
.lead-form,
.content-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
}

.service-card {
    min-height: 190px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: inline-block;
    border-radius: 16px;
    background: var(--blue-100);
    position: relative;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    background: var(--blue-700);
}

.service-icon::before {
    inset: 15px 13px;
    border-radius: 3px;
}

.service-icon::after {
    width: 18px;
    height: 4px;
    left: 18px;
    top: 25px;
    background: #fff;
}

.service-icon-shield::before { border-radius: 18px 18px 22px 22px; }
.service-icon-invoice::before { border-radius: 3px; }
.service-icon-customs::before { transform: rotate(45deg); }
.service-icon-public::before { border-radius: 50%; }
.service-icon-contract::before { width: 25px; height: 30px; inset: 12px 14px; }
.service-icon-bank::before { clip-path: polygon(50% 0, 100% 35%, 92% 35%, 92% 100%, 8% 100%, 8% 35%, 0 35%); }
.service-icon-commerce::before { border-radius: 50% 50% 10px 10px; }

.service-card small {
    display: block;
    margin-top: 18px;
    color: var(--red-600);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 6px 0 0;
    color: var(--blue-950);
    font-size: 19px;
    line-height: 1.3;
}

.invoice-section {
    padding: 80px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.invoice-section h2,
.invoice-section p {
    color: #fff;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding: 16px 18px 16px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 14px;
    height: 8px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
}

.consult-grid {
    align-items: start;
}

.support-box {
    width: min(100%, 360px);
    margin-top: 28px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--blue-100);
}

.support-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.support-box a {
    display: block;
    color: var(--red-600);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.lead-form {
    padding: 28px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--blue-950);
    font-size: 14px;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 3px rgba(15, 100, 199, 0.12);
}

.form-message {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.form-message.success {
    color: #075a3d;
    background: #e5f8ef;
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.pricing-tabs button {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 16px;
    color: var(--blue-950);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.pricing-tabs button.is-active {
    color: #fff;
    border-color: var(--blue-700);
    background: var(--blue-700);
}

.pricing-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-panel.is-active {
    display: grid;
}

.price-card {
    padding: 28px;
}

.price-card h3 {
    margin: 0 0 12px;
    color: var(--blue-950);
    font-size: 22px;
}

.price-card del {
    display: block;
    min-height: 27px;
    color: #8da0b8;
    font-weight: 700;
}

.price-card strong {
    display: block;
    margin: 4px 0 20px;
    color: var(--red-600);
    font-size: 30px;
    line-height: 1.2;
}

.price-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.price-card li {
    padding-left: 22px;
    position: relative;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-600);
}

.site-footer {
    color: #dbe9fa;
    background: #062650;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 38px;
    padding: 58px 0 34px;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.site-footer p {
    margin: 0 0 10px;
}

.site-footer strong {
    color: #fff;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer li {
    color: #dbe9fa;
}

.site-footer a:hover {
    color: #fff;
}

.footer-note {
    color: #a9bfda;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #a9bfda;
    font-size: 13px;
}

.call-now {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--red-600);
    box-shadow: 0 12px 25px rgba(225, 38, 47, 0.28);
    font-size: 14px;
    font-weight: 800;
}

.content-card {
    padding: 42px;
}

.content-card h1 {
    margin-top: 0;
    color: var(--blue-950);
}

.archive-hero,
.single-hero {
    padding: 76px 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 16%, rgba(255, 138, 31, 0.24), transparent 24%),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.archive-hero h1,
.single-hero h1 {
    max-width: 920px;
    margin: 14px 0 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: 0;
}

.archive-hero p,
.archive-description,
.single-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #dcecff;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #dcecff;
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.news-layout-section,
.single-layout-section {
    padding: 72px 0;
    background: var(--soft);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.news-list {
    display: grid;
    gap: 20px;
}

.news-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
}

.news-thumb {
    min-height: 220px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-thumb span {
    font-size: 34px;
    font-weight: 800;
}

.news-card-body {
    padding: 26px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.single-hero .post-meta {
    margin-top: 20px;
    color: #dcecff;
}

.news-card h2 {
    margin: 10px 0 10px;
    color: var(--blue-950);
    font-size: 25px;
    line-height: 1.25;
}

.news-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.read-more {
    color: var(--red-600);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 128px;
}

.sidebar-box,
.single-article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
}

.sidebar-box {
    padding: 24px;
}

.sidebar-box h2 {
    margin: 0 0 14px;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.25;
}

.sidebar-box p {
    margin: 0 0 14px;
    color: var(--muted);
}

.contact-box {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.contact-box h2,
.contact-box p {
    color: #fff;
}

.recent-posts {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent-posts li {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.recent-posts li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.recent-posts a {
    display: block;
    color: var(--blue-950);
    font-weight: 800;
    line-height: 1.35;
}

.recent-posts time {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.pagination-wrap {
    margin-top: 18px;
}

.pagination-wrap .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-wrap a,
.pagination-wrap span {
    min-width: 42px;
    min-height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue-950);
    font-weight: 800;
}

.pagination-wrap .current {
    color: #fff;
    border-color: var(--blue-700);
    background: var(--blue-700);
}

.single-hero-inner {
    max-width: 960px;
}

.single-article {
    overflow: hidden;
}

.single-featured {
    margin: 0;
    background: var(--blue-100);
}

.single-featured img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.single-article .entry-content {
    padding: 42px;
    color: #24334d;
}

.single-article .entry-content h2,
.single-article .entry-content h3,
.single-article .entry-content h4 {
    color: var(--blue-950);
    line-height: 1.25;
}

.single-article .entry-content h2 {
    margin-top: 34px;
    font-size: 31px;
}

.single-article .entry-content h3 {
    margin-top: 28px;
    font-size: 24px;
}

.single-article .entry-content p,
.single-article .entry-content li {
    font-size: 17px;
}

.single-article .entry-content a {
    color: var(--blue-700);
    font-weight: 700;
}

.single-article .entry-content blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    border-left: 5px solid var(--red-600);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--blue-100);
    color: var(--blue-950);
    font-weight: 700;
}

.single-footer,
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 42px;
    border-top: 1px solid var(--line);
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--blue-950);
    background: var(--blue-100);
    font-size: 13px;
    font-weight: 800;
}

.post-navigation {
    align-items: flex-start;
    background: #fbfdff;
}

.post-navigation a {
    color: var(--blue-950);
    font-weight: 800;
}

.post-navigation div:last-child {
    text-align: right;
}

.page-hero {
    padding: 78px 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 16%, rgba(255, 138, 31, 0.22), transparent 24%),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: center;
}

.page-hero h1 {
    max-width: 880px;
    margin: 14px 0 16px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #dcecff;
    font-size: 18px;
}

.hero-contact-card,
.register-summary-card,
.download-summary-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

.hero-contact-card span,
.register-summary-card span,
.download-summary-card span {
    display: block;
    color: #dcecff;
    font-size: 14px;
    font-weight: 800;
}

.hero-contact-card a,
.register-summary-card strong,
.download-summary-card strong {
    display: block;
    margin: 8px 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-contact-card small {
    display: block;
    color: #dcecff;
    font-weight: 700;
}

.contact-page-section,
.register-section,
.download-section {
    padding: 78px 0;
    background: var(--soft);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.contact-info-stack {
    display: grid;
    gap: 18px;
}

.contact-info-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
}

.contact-info-card h2 {
    margin: 0 0 6px;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.25;
}

.contact-info-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.contact-info-card a,
.contact-info-card strong {
    color: var(--red-600);
    font-weight: 800;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--blue-100);
    position: relative;
}

.contact-icon::before,
.contact-icon::after {
    content: "";
    position: absolute;
    background: var(--blue-700);
}

.contact-icon-phone::before {
    width: 26px;
    height: 26px;
    left: 16px;
    top: 16px;
    border-radius: 8px 8px 12px 12px;
    transform: rotate(-18deg);
}

.contact-icon-mail::before {
    width: 30px;
    height: 22px;
    left: 14px;
    top: 18px;
    border-radius: 4px;
}

.contact-icon-mail::after {
    width: 20px;
    height: 2px;
    left: 19px;
    top: 27px;
    background: #fff;
    transform: rotate(-25deg);
}

.contact-icon-location::before {
    width: 26px;
    height: 32px;
    left: 16px;
    top: 13px;
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg);
}

.contact-page-form h2 {
    margin: 0 0 18px;
    color: var(--blue-950);
    font-size: 30px;
    line-height: 1.2;
}

.register-summary-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.register-summary-card li {
    padding-left: 22px;
    position: relative;
    color: #fff;
    font-weight: 700;
}

.register-summary-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
}

.price-table-stack {
    display: grid;
    gap: 24px;
}

.price-table-card,
.download-main {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
    overflow: hidden;
}

.price-table-head,
.download-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 26px;
    border-bottom: 1px solid var(--line);
}

.price-table-head h3,
.download-toolbar h2 {
    margin: 0 0 8px;
    color: var(--blue-950);
    font-size: 27px;
    line-height: 1.2;
}

.price-table-head p,
.download-toolbar p {
    margin: 0;
    color: var(--muted);
}

.responsive-table {
    overflow-x: auto;
}

.service-price-table,
.download-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.service-price-table th,
.service-price-table td,
.download-table th,
.download-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.service-price-table th,
.download-table th {
    color: var(--blue-950);
    background: #f7fbff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-price-table td:not(:first-child) {
    color: var(--red-600);
    font-size: 20px;
    font-weight: 800;
}

.register-benefit-section {
    padding: 72px 0;
    background: #fff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 51, 107, 0.06);
}

.benefit-grid span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue-700);
    font-weight: 800;
}

.benefit-grid h3 {
    margin: 18px 0 10px;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.25;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
}

.download-summary-card {
    display: grid;
    gap: 12px;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.download-aside {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 128px;
}

.download-table td:first-child {
    color: var(--blue-700);
    font-weight: 800;
}

.download-table td:nth-child(2) {
    color: var(--blue-950);
    font-weight: 800;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--blue-700);
    font-size: 13px;
    font-weight: 800;
}

.download-note-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .nav-shell {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .primary-nav {
        display: none;
        flex-basis: 100%;
        order: 4;
    }

    .primary-nav.is-open {
        display: block;
    }

    .site-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 0 20px;
    }

    .site-menu a {
        padding: 11px 0;
    }

    .hero-grid,
    .intro-grid,
    .invoice-grid,
    .consult-grid,
    .news-layout,
    .page-hero-grid,
    .contact-page-grid,
    .download-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar,
    .download-aside {
        position: static;
    }

    .hero-grid {
        gap: 28px;
        padding-top: 38px;
    }

    .hero-card {
        min-height: 330px;
    }

    .service-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .topbar-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar {
        display: none;
    }

    .nav-shell {
        min-height: 68px;
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        background: linear-gradient(160deg, #07336b 0%, #0f64c7 100%);
    }

    .hero-grid {
        min-height: 0;
        padding: 34px 0 54px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .slide h2 {
        font-size: 27px;
    }

    .intro-section,
    .services-section,
    .consult-section,
    .pricing-section,
    .page-content,
    .contact-page-section,
    .register-section,
    .register-benefit-section,
    .download-section {
        padding: 58px 0;
    }

    .service-grid,
    .pricing-panel,
    .news-card,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .archive-hero,
    .single-hero,
    .page-hero {
        padding: 54px 0;
    }

    .news-layout-section,
    .single-layout-section {
        padding: 46px 0;
    }

    .news-card {
        min-height: 0;
    }

    .news-thumb {
        min-height: 190px;
    }

    .news-card-body,
    .single-article .entry-content,
    .single-footer,
    .post-navigation,
    .price-table-head,
    .download-toolbar {
        padding: 24px;
    }

    .single-footer,
    .post-navigation,
    .price-table-head,
    .download-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-navigation div:last-child {
        text-align: left;
    }

    .intro-visual {
        min-height: 280px;
    }

    .token-illustration {
        width: 190px;
        height: 250px;
    }

    .pricing-tabs {
        justify-content: stretch;
    }

    .pricing-tabs button {
        width: 100%;
        text-align: left;
    }

    .lead-form,
    .content-card {
        padding: 22px;
    }

    .contact-info-card {
        grid-template-columns: 1fr;
    }

    .hero-contact-card a,
    .register-summary-card strong,
    .download-summary-card strong {
        font-size: 28px;
    }

    .service-price-table,
    .download-table {
        min-width: 680px;
    }

    .call-now {
        left: 16px;
        right: 16px;
        justify-content: center;
    }
}
