:root {
    --local6-blue: #2563eb;
    --local6-dark: #0f172a;
    --local6-muted: #64748b;
    --local6-border: #e2e8f0;
    --local6-bg: #f8fafc;
    --local6-card: #ffffff;
    --local6-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

.local6-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32rem),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 28rem),
        var(--local6-bg);
    color: var(--local6-dark);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

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

.local6-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.local6-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.local6-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1.2px;
    color: var(--local6-dark);
}

.local6-logo span {
    color: var(--local6-blue);
}

.local6-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 700;
}

.local6-nav-links a {
    color: #334155;
    text-decoration: none;
}

.local6-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.local6-btn-primary,
.local6-btn-primary:visited,
.local6-btn-primary:active {
    background: var(--local6-blue);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.local6-btn-primary:hover {
    color: #ffffff;
}

.local6-btn-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--local6-dark);
    border-color: var(--local6-border);
}

.local6-hero {
    padding: 86px 0 72px;
}

.local6-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 54px;
    align-items: center;
}

.local6-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.78);
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 800;
}

.local6-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.45);
    animation: local6Pulse 1.8s infinite;
}

.local6-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.94;
    letter-spacing: -4px;
}

.local6-hero h1 span {
    color: var(--local6-blue);
}

.local6-hero-copy {
    max-width: 650px;
    margin: 0 0 30px;
    color: #475569;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.6;
}

.local6-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.local6-note {
    margin-top: 18px;
    color: var(--local6-muted);
    font-size: 14px;
}

.local6-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 620px;
    margin-top: 34px;
}

.local6-trust-item {
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.local6-trust-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 18px;
}

.local6-trust-item span {
    color: var(--local6-muted);
    font-size: 13px;
}

.local6-mockup-wrap {
    position: relative;
}

.local6-floating-pill {
    position: absolute;
    z-index: 3;
    top: -18px;
    right: 18px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--local6-border);
    font-size: 14px;
    font-weight: 850;
    animation: local6Float 4s ease-in-out infinite;
}

.local6-mockup {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.18);
    transform: rotate(1.2deg);
}

.local6-flyer {
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 1px solid #e2e8f0;
}

.local6-flyer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.local6-flyer-title {
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -1.5px;
}

.local6-flyer-title span {
    color: var(--local6-blue);
}

.local6-flyer-tag {
    padding: 7px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 850;
}

.local6-ad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.local6-ad-box {
    min-height: 104px;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.local6-ad-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.local6-ad-box strong {
    font-size: 15px;
}

.local6-ad-line {
    height: 8px;
    width: 72%;
    border-radius: 999px;
    background: #e2e8f0;
}

.local6-ad-line.short {
    width: 46%;
}

.local6-section {
    padding: 76px 0;
}

.local6-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.local6-eyebrow {
    margin: 0 0 10px;
    color: var(--local6-blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.local6-section h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.local6-section-text {
    margin: 16px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

.local6-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.local6-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--local6-radius);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.local6-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.local6-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 20px;
    font-weight: 900;
}

.local6-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -0.6px;
}

.local6-card p {
    margin: 0;
    color: var(--local6-muted);
    line-height: 1.65;
}

.local6-dark-section {
    background: var(--local6-dark);
    color: #ffffff;
}

.local6-dark-section .local6-section-text {
    color: #cbd5e1;
}

.local6-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.local6-step {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.local6-step-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--local6-blue);
    font-weight: 950;
}

.local6-step h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.local6-step p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.local6-offer {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: stretch;
}

.local6-offer-main,
.local6-price-card {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--local6-border);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.local6-offer-main {
    padding: 36px;
}

.local6-offer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.local6-offer-list div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-weight: 750;
}

.local6-price-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.local6-price-label {
    color: var(--local6-muted);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.local6-price {
    margin: 8px 0 10px;
    font-size: 54px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -2px;
}

.local6-price-card p {
    color: var(--local6-muted);
    line-height: 1.65;
}

.local6-form-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.local6-form-panel {
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--local6-border);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.local6-form {
    display: grid;
    gap: 14px;
}

.local6-field {
    display: grid;
    gap: 7px;
}

.local6-field label {
    font-size: 14px;
    font-weight: 850;
    color: #334155;
}

.local6-field input,
.local6-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 16px;
    outline: none;
    background: #f8fafc;
    transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.local6-field input:focus,
.local6-field textarea:focus {
    border-color: var(--local6-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    background: #ffffff;
}

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

.local6-side-note {
    padding: 28px;
    border-radius: 30px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.local6-side-note h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -1px;
}

.local6-side-note p {
    color: #475569;
    margin: 0 0 16px;
    line-height: 1.65;
}

.local6-side-note ul {
    margin: 0;
    padding-left: 20px;
    color: #334155;
}

.local6-side-note li {
    margin-bottom: 8px;
}

.local6-footer {
    padding: 32px 0;
    background: var(--local6-dark);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.01em;
}

.local6-mobile-sticky {
    display: none;
}

.local6-animate {
    opacity: 0;
    transform: translateY(18px);
    animation: local6FadeUp 700ms ease forwards;
}

.local6-delay-1 {
    animation-delay: 120ms;
}

.local6-delay-2 {
    animation-delay: 240ms;
}

.local6-delay-3 {
    animation-delay: 360ms;
}

@keyframes local6FadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes local6Pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes local6Float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .local6-nav-links a {
        display: none;
    }

    .local6-hero {
        padding: 54px 0 46px;
    }

    .local6-hero-grid,
    .local6-offer,
    .local6-form-wrap {
        grid-template-columns: 1fr;
    }

    .local6-mockup {
        transform: none;
    }

    .local6-cards,
    .local6-steps {
        grid-template-columns: 1fr;
    }

    .local6-offer-list {
        grid-template-columns: 1fr;
    }

    .local6-trust-row {
        grid-template-columns: 1fr;
    }

    .local6-section {
        padding: 54px 0;
    }
}

@media (max-width: 560px) {
    .local6-container {
        width: min(100% - 24px, 1120px);
    }

    .local6-nav {
        min-height: 64px;
    }

    .local6-logo {
        font-size: 25px;
    }

    .local6-hero h1 {
        letter-spacing: -2.4px;
    }

    .local6-cta-row .local6-btn-primary {
        display: none;
    }

    .local6-cta-row .local6-btn {
        width: 100%;
    }

    .local6-ad-grid {
        gap: 9px;
    }

    .local6-ad-box {
        min-height: 86px;
        padding: 13px;
    }

    .local6-floating-pill {
        display: none;
    }

    .local6-offer-main,
    .local6-price-card,
    .local6-form-panel,
    .local6-side-note {
        padding: 22px;
        border-radius: 24px;
    }

    .local6-mobile-sticky {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 30;
        display: flex;
    }

    .local6-mobile-sticky .local6-btn {
        width: 100%;
        box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
    }

    .local6-mobile-sticky {
        transition: transform 300ms ease, opacity 300ms ease;
    }

    .local6-mobile-sticky--hidden {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }
}

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

    .local6-animate {
        opacity: 1;
        transform: none;
    }
}
