/* LoadLider landing page */

:root {
    --blue-950: #061d4e;
    --blue-900: #08245f;
    --blue-800: #063a96;
    --blue-700: #0757d7;
    --blue-100: #eaf2ff;
    --green-600: #1fbf4a;
    --green-100: #e9f9ef;
    --orange-600: #f15a18;
    --orange-700: #d9480f;
    --yellow-400: #ffd02f;
    --ink: #081c45;
    --muted: #54617a;
    --line: #d8e2f0;
    --paper: #ffffff;
    --wash: #f3f8ff;
    --shadow: 0 18px 46px rgba(8, 28, 69, 0.16);
    --radius: 8px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--wash);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

body.menu-open {
    overflow: hidden;
}

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

[id] {
    scroll-margin-top: 86px;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(216, 226, 240, 0.9);
    box-shadow: 0 8px 28px rgba(8, 28, 69, 0.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 70px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 900;
    color: var(--ink);
}

.brand-logo {
    width: clamp(150px, 15vw, 206px);
    height: auto;
    display: block;
}

.brand-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
    box-shadow: inset -7px -7px 0 rgba(255, 208, 47, 0.9), 0 10px 22px rgba(8, 28, 69, 0.18);
    font-size: 0.98rem;
}

.brand-name {
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1;
}

.brand-name span {
    color: var(--orange-600);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 800;
}

.site-nav a:not(.btn) {
    position: relative;
    padding: 26px 0;
}

.site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):first-child {
    color: var(--orange-600);
}

.site-nav a:not(.btn):first-child::after {
    background: var(--orange-600);
}

.menu-toggle {
    display: none;
    justify-self: end;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 900;
    cursor: pointer;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #ff6c25, var(--orange-600));
    box-shadow: 0 14px 30px rgba(241, 90, 24, 0.28);
}

.btn-primary:hover {
    background: var(--orange-700);
}

.btn-outline-light {
    color: #fff;
    background: rgba(7, 87, 215, 0.22);
    border: 2px solid var(--green-600);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn span {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange-600);
    background: #fff;
    font-size: 0.62rem;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 74% 52%, rgba(10, 94, 232, 0.6), transparent 30%),
        linear-gradient(120deg, var(--blue-950) 0%, var(--blue-900) 46%, var(--blue-700) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0 auto 0 0;
    width: 37%;
    opacity: 0.34;
    background:
        linear-gradient(90deg, rgba(6, 29, 78, 0.2), var(--blue-950)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 7px, transparent 7px 14px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 17px 17px;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.5fr);
    gap: 34px 42px;
    align-items: center;
    padding: 28px 0 26px;
}

.section-chip {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue-700), rgba(7, 87, 215, 0.32));
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 14px 0 16px;
    color: #fff;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--yellow-400);
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 820px;
}

.hero-point {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    align-items: start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.25;
}

.hero-point b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green-600);
    font-size: 0.82rem;
}

.hero-point strong {
    display: block;
    color: #fff;
}

.hero-device {
    display: flex;
    justify-content: center;
}

.phone-card {
    width: min(100%, 330px);
    padding: 10px;
    border-radius: 34px;
    background: #08121f;
    border: 4px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.phone-screen {
    min-height: 370px;
    overflow: hidden;
    border-radius: 24px;
    background: #f8fafc;
    color: var(--ink);
}

.phone-top {
    min-height: 68px;
    display: grid;
    grid-template-columns: 28px 1fr 30px;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #fff;
    background: var(--blue-700);
}

.phone-top strong,
.phone-top span {
    display: block;
}

.phone-top strong {
    font-size: 0.88rem;
}

.phone-top div span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
}

.phone-back,
.phone-menu {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 900;
}

.chat-list {
    display: grid;
    gap: 9px;
    padding: 14px 16px 10px;
}

.bubble {
    width: fit-content;
    max-width: 78%;
    padding: 10px 12px;
    border-radius: 16px 16px 16px 4px;
    background: #fff;
    color: #111827;
    box-shadow: 0 6px 18px rgba(8, 28, 69, 0.08);
    font-size: 0.88rem;
    line-height: 1.25;
}

.bubble.reply {
    justify-self: end;
    color: #fff;
    background: var(--blue-700);
    border-radius: 16px 16px 4px 16px;
}

.bubble.guide {
    max-width: 100%;
    color: #6b3a04;
    background: #fff7d6;
    border: 1px solid #ffe08a;
    border-radius: 12px;
    font-size: 0.78rem;
}

.phone-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 16px 16px;
}

.phone-actions span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue-700);
}

.phone-actions span:last-child {
    margin-left: auto;
}

.hero-products {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(3, 18, 56, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.products-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.products-heading strong {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
}

.products-heading span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-categories span {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
}

.ticker {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker-track {
    width: max-content;
    display: flex;
    gap: 10px;
    animation: tickerMove 42s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--blue-900);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.ticker .brand-smart { color: var(--green-600); }
.ticker .brand-tnt { color: #f08a00; }
.ticker .brand-globe { color: #234fa3; }
.ticker .brand-tm { color: #203b8f; }
.ticker .brand-dito { color: #e1332b; }
.ticker .brand-gomo { color: #d92736; }

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
}

.about-tpc {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.about-tpc-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: center;
}

.about-tpc h2 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.05;
}

.about-tpc p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.opportunity {
    position: relative;
    z-index: 2;
    padding: 46px 0 48px;
    background: linear-gradient(180deg, #ffffff, #f6faff);
    border-bottom: 1px solid var(--line);
}

.opportunity-inner {
    display: grid;
    gap: 28px;
}

.opportunity-copy h2,
.panel h2 {
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: clamp(1.85rem, 2.4vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.opportunity-copy h2::after {
    content: "";
    display: block;
    width: 66px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: var(--green-600);
}

.opportunity-copy p,
.panel > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.opportunity-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.audience-card {
    flex: 0 1 calc((100% - 36px) / 3);
    max-width: 340px;
    min-width: 220px;
    min-height: 172px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 25px rgba(8, 28, 69, 0.09);
    text-align: center;
}

.audience-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    color: var(--blue-800);
    background: var(--green-100);
    border: 5px solid #dff5e7;
    font-weight: 900;
}

.audience-icon svg {
    width: 58px;
    height: 58px;
    overflow: visible;
}

.icon-blue {
    fill: var(--blue-700);
}

.icon-green {
    fill: var(--green-600);
}

.icon-orange {
    fill: var(--orange-600);
}

.icon-yellow {
    fill: var(--yellow-400);
}

.icon-white {
    fill: #fff;
}

.icon-line {
    fill: none;
    stroke: var(--blue-950);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-chart {
    fill: none;
    stroke: var(--green-600);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.audience-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.18;
}

.audience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.workbench {
    background: #fff;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.workbench-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 34px;
    padding: 48px 0;
}

.panel {
    padding: 34px 36px;
    background: #fff;
}

.panel + .panel {
    border-left: 1px solid var(--line);
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    border-top: 3px dashed var(--green-600);
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    color: var(--blue-800);
    background: #fff;
    border: 4px solid var(--blue-700);
    box-shadow: 0 0 0 10px #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.step h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.2;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.faq-list {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.faq-question {
    width: 100%;
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-size: 0.88rem;
    font-weight: 900;
    cursor: pointer;
}

.faq-question span {
    color: var(--blue-700);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item.is-open .faq-question span {
    color: var(--orange-600);
}

.faq-answer {
    display: none;
    padding: 0 12px 12px;
    color: var(--muted);
    font-size: 0.84rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.more-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--blue-700);
    font-size: 0.9rem;
    font-weight: 900;
}

.lead-section {
    padding: 54px 0 58px;
    background:
        radial-gradient(circle at 15% 20%, rgba(22, 199, 84, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff, #f6f9fc);
}

.lead-shell {
    max-width: 820px;
}

.lead-panel {
    padding: 34px;
    border: 1px solid rgba(203, 213, 225, 0.86);
    border-radius: 16px;
    box-shadow: 0 22px 54px rgba(8, 28, 69, 0.12);
}

.lead-panel h2 {
    font-size: clamp(1.55rem, 1.8vw, 2rem);
}

.lead-panel > p {
    max-width: 560px;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.field {
    display: grid;
    gap: 5px;
}

.field-wide {
    grid-column: span 2;
}

.field label {
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
}

.field-hint {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.35;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #c8d4e4;
    border-radius: 6px;
    color: var(--ink);
    background: #fff;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 78px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 4px rgba(7, 87, 215, 0.12);
}

.lead-form .btn {
    grid-column: span 1;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
    line-height: 1.15;
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: center;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.privacy-lock {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 12px;
    margin-top: 3px;
    border-radius: 3px;
    background: var(--blue-700);
}

.privacy-lock::before {
    content: "";
    position: absolute;
    left: 2px;
    top: -7px;
    width: 6px;
    height: 8px;
    border: 2px solid var(--blue-700);
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
}

.privacy-lock::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 2px;
    height: 5px;
    border-radius: 999px;
    background: #fff;
}

.form-status {
    grid-column: span 2;
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.form-status.is-error {
    color: #dc2626;
}

.form-status.is-success {
    color: var(--green-600);
}

body.modal-open {
    overflow: hidden;
}

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(4, 16, 42, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.success-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.success-dialog {
    width: min(100%, 430px);
    padding: 34px 30px 30px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 28px 74px rgba(2, 16, 45, 0.32);
    text-align: center;
    transform: translateY(12px) scale(0.98);
    transition: transform 180ms ease;
}

.success-modal.is-open .success-dialog {
    transform: translateY(0) scale(1);
}

.success-check {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #20c853;
    box-shadow: 0 14px 26px rgba(32, 200, 83, 0.26);
}

.success-check::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 19px;
    width: 20px;
    height: 32px;
    border: solid #fff;
    border-width: 0 7px 7px 0;
    border-radius: 2px;
    transform: rotate(45deg);
}

.success-dialog h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.12;
}

.success-dialog p {
    margin: 12px auto 22px;
    max-width: 330px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.45;
}

.success-close {
    min-width: 150px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
}

.footer-inner {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: center;
    gap: 32px;
    padding: 24px min(260px, 20vw) 24px 0;
}

.footer-brand {
    display: grid;
    gap: 5px;
}

.footer-inner strong {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

.footer-inner strong::first-letter {
    color: inherit;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.94rem;
    font-weight: 800;
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.powered {
    display: grid;
    gap: 5px;
    color: #fff;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
    justify-self: start;
}

.powered span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 700;
}

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

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .opportunity-inner,
    .about-tpc-inner,
    .workbench-grid {
        grid-template-columns: 1fr;
    }

    .panel + .panel {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    [id] {
        scroll-margin-top: 72px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-inner {
        min-height: 58px;
        grid-template-columns: auto auto;
    }

    .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        box-shadow: inset -4px -4px 0 rgba(255, 208, 47, 0.9);
    }

    .brand-name {
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: fixed;
        inset: 58px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 45px rgba(8, 28, 69, 0.14);
    }

    body.menu-open .site-nav {
        display: flex;
    }

    .site-nav a:not(.btn) {
        padding: 12px 4px;
    }

    .site-nav a:not(.btn)::after {
        display: none;
    }

    .site-nav .btn {
        margin-top: 10px;
    }

    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px 0 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 11vw, 3.35rem);
    }

    .hero-copy p {
        font-size: 0.92rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .hero-points {
        grid-template-columns: 1fr 1fr;
    }

    .hero-point {
        padding: 10px;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-device {
        order: 2;
    }

    .hero-products {
        order: 3;
        padding: 14px;
    }

    .products-heading {
        display: grid;
        gap: 4px;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }

    .ticker {
        overflow-x: auto;
        mask-image: none;
        -webkit-overflow-scrolling: touch;
    }

    .ticker-track {
        animation: none;
        padding-bottom: 2px;
    }

    .phone-card {
        width: min(100%, 338px);
        margin: 0 auto;
    }

    .opportunity {
        padding: 28px 0;
    }

    .about-tpc {
        padding: 24px 0;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .audience-card {
        flex-basis: auto;
        min-height: auto;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 12px;
        text-align: left;
        align-items: center;
    }

    .audience-icon {
        width: 54px;
        height: 54px;
        margin: 0;
        grid-row: span 2;
    }

    .audience-icon svg {
        width: 44px;
        height: 44px;
    }

    .audience-card h3,
    .audience-card p {
        margin: 0;
    }

    .panel {
        padding: 28px 0;
    }

    .workbench-grid {
        border: 0;
        gap: 0;
        padding: 28px 0;
    }

    .lead-section {
        padding: 34px 0 38px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 20px;
    }

    .steps::before {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 12px;
        align-items: start;
        text-align: left;
        padding: 14px;
        border-radius: var(--radius);
        background: var(--blue-900);
        color: #fff;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        margin: 0;
        border-width: 3px;
        box-shadow: none;
    }

    .step h3 {
        grid-column: 2;
        color: #fff;
    }

    .step p {
        grid-column: 2;
        color: rgba(255, 255, 255, 0.78);
    }

    .lead-panel {
        padding: 22px;
        border-radius: 14px;
        box-shadow: var(--shadow);
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .field-wide,
    .lead-form .btn,
    .form-status {
        grid-column: span 1;
    }

    .footer-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 0;
    }

    .powered {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .hero-points {
        grid-template-columns: 1fr;
    }

    .phone-screen {
        min-height: 330px;
    }

    .bubble {
        font-size: 0.8rem;
    }
}
