* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #4a4a4a;
    background: #f0f2f5;
    line-height: 1.65;
    overflow-x: hidden;
}

.ga-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #050505;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.ga-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(240, 242, 245, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 0;
}

.ga-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #1877F2 0%, #833AB4 40%, #E4405F 70%, #F77737 100%);
}

.ga-header .ga-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.ga-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    color: #050505;
}

.ga-logo img {
    height: 36px;
    width: auto;
}

.ga-logo span {
    font-size: 13px;
    font-weight: 700;
    color: #1877F2;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(24, 119, 242, 0.12);
}

.ga-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.ga-nav a {
    font-weight: 600;
    font-size: 15px;
    color: #050505;
}

.ga-nav a:hover {
    color: #1877F2;
}

.ga-nav-cta {
    background: linear-gradient(135deg, #1877F2, #0866FF);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.25);
}

.ga-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.ga-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: #050505;
}

.ga-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 40px;
}

.ga-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(24, 119, 242, 0.26), transparent 34%),
        radial-gradient(circle at 90% 8%, rgba(228, 64, 95, 0.22), transparent 32%),
        radial-gradient(circle at 70% 80%, rgba(131, 58, 180, 0.16), transparent 30%),
        linear-gradient(180deg, #e7f3ff 0%, #f0f2f5 72%);
    pointer-events: none;
}

.ga-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.ga-blob-a {
    width: 280px;
    height: 280px;
    left: -60px;
    top: 40px;
    background: rgba(24, 119, 242, 0.34);
    animation: ga-blob 12s ease-in-out infinite;
}

.ga-blob-b {
    width: 220px;
    height: 220px;
    right: 8%;
    top: -40px;
    background: rgba(228, 64, 95, 0.38);
    animation: ga-blob 10s ease-in-out infinite reverse;
}

.ga-hero-grid {
    position: relative;
    display: grid;
    gap: 36px;
    align-items: center;
    min-width: 0;
}

.ga-hero-copy,
.ga-panel {
    min-width: 0;
    max-width: 100%;
}

.ga-eyebrow {
    color: #1877F2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ga-hero h1 {
    font-size: clamp(30px, 8vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 18px;
    overflow-wrap: break-word;
}

.ga-hero h1 em {
    font-style: normal;
    color: #1877F2;
}

.ga-lead {
    font-size: 17px;
    max-width: 52ch;
    margin-bottom: 28px;
}

.ga-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.ga-hero-actions .ga-btn,
.ga-hero-actions .ga-btn-ghost {
    white-space: nowrap;
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 10px;
}

.ga-hero-actions .ga-btn i {
    font-size: 12px;
}

.ga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1877F2, #0866FF);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ga-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #1877F2;
    padding: 14px 24px;
    border: 2px solid #1877F2;
    border-radius: 12px;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ga-btn-ghost:hover {
    background: rgba(24, 119, 242, 0.08);
}

.ga-btn-full {
    width: 100%;
}

.ga-panel {
    min-width: 0;
}

.ga-serp {
    position: relative;
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.12);
    box-shadow: 0 22px 50px rgba(24, 119, 242, 0.16);
    border-radius: 24px;
    padding: 22px 22px 20px;
    max-width: 100%;
    overflow: hidden;
    animation: ga-float 6.5s ease-in-out infinite;
}

.ga-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f8fa;
    border: 1px solid #e4e6eb;
    border-radius: 999px;
    padding: 12px 16px;
    margin-bottom: 18px;
    color: #1877F2;
}

.ga-search-query {
    color: #050505;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #1877F2;
    animation: ga-type 4.8s steps(22) infinite, ga-caret 0.85s step-end infinite;
    max-width: 22ch;
}

.ga-ad {
    position: relative;
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.18);
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: none;
    animation: ga-ad-press 4.8s ease infinite;
}

.ga-ad-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.ga-ad-badge {
    color: #5f6368;
    font-weight: 700;
    font-size: 12px;
}

.ga-ad-brand {
    color: #202124;
    font-weight: 600;
}

.ga-ad-url {
    color: #1a7346;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ga-ad-title {
    display: block;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #1a0dab;
    font-weight: 700;
}

.ga-ad-desc {
    font-size: 14px;
    color: #4d5156;
    margin-bottom: 14px;
}

.ga-sitelinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ga-sitelinks a {
    font-size: 13px;
    font-weight: 600;
    color: #1a0dab;
    background: #f7f8fa;
    border-radius: 8px;
    padding: 8px 12px;
    position: relative;
    z-index: 3;
}

.ga-sitelinks a:hover {
    background: #e7f3ff;
}

.ga-sitelinks a:first-child {
    animation: ga-link-hit 4.8s ease infinite;
}

.ga-organic {
    margin-top: 16px;
    padding: 14px 6px 4px;
    border-top: 1px solid #eef0f5;
    opacity: 0.55;
}

.ga-organic p {
    color: #1a7346;
    font-size: 12px;
    font-weight: 600;
}

.ga-organic strong {
    display: block;
    color: #1a0dab;
    font-size: 16px;
    margin: 4px 0;
}

.ga-organic span {
    font-size: 13px;
    color: #4d5156;
}

.ga-cursor {
    position: absolute;
    left: 42%;
    top: 38%;
    z-index: 2;
    pointer-events: none;
    animation: ga-cursor 4.8s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(5, 5, 5, 0.25));
}

.ga-click {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #1877F2;
    opacity: 0;
    animation: ga-ripple 4.8s ease-out infinite;
}

.ga-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1877F2, #E4405F);
    color: #fff;
    flex-shrink: 0;
}

@keyframes ga-cursor {
    0% {
        transform: translate(90px, 110px) scale(1);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    38% {
        transform: translate(8px, 8px) scale(1);
    }
    46% {
        transform: translate(8px, 12px) scale(0.86);
    }
    54% {
        transform: translate(8px, 8px) scale(1);
    }
    78% {
        transform: translate(8px, 8px) scale(1);
        opacity: 1;
    }
    92%, 100% {
        transform: translate(70px, 90px) scale(1);
        opacity: 0;
    }
}

@keyframes ga-ripple {
    0%, 42% {
        opacity: 0;
        transform: scale(0.4);
    }
    46% {
        opacity: 0.8;
        transform: scale(0.7);
    }
    62% {
        opacity: 0;
        transform: scale(2.4);
    }
    100% {
        opacity: 0;
    }
}

@keyframes ga-ad-press {
    0%, 42%, 58%, 100% {
        transform: scale(1);
        background: #fff;
    }
    46%, 50% {
        transform: scale(0.985);
        background: #f6f7ff;
    }
}

@keyframes ga-caret {
    50% {
        border-right-color: transparent;
    }
}

@keyframes ga-type {
    0%, 12% {
        max-width: 0;
    }
    42%, 78% {
        max-width: 22ch;
    }
    92%, 100% {
        max-width: 0;
    }
}

@keyframes ga-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ga-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(28px, 18px) scale(1.12);
    }
}

@keyframes ga-link-hit {
    0%, 42%, 58%, 100% {
        background: #f7f8fa;
        box-shadow: none;
        transform: scale(1);
    }
    46%, 50% {
        background: #d8e7fb;
        box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.22);
        transform: scale(0.96);
    }
}

@keyframes ga-featured {
    0%, 100% {
        box-shadow: 0 16px 40px rgba(24, 119, 242, 0.14);
    }
    50% {
        box-shadow: 0 20px 48px rgba(24, 119, 242, 0.28);
    }
}

@keyframes ga-icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(24, 119, 242, 0.2);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 12px 24px rgba(24, 119, 242, 0.32);
    }
}

@keyframes ga-panel-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ga-cursor,
    .ga-click,
    .ga-ad,
    .ga-search-query,
    .ga-serp,
    .ga-blob,
    .ga-sitelinks a:first-child,
    .ga-funnel .ga-icon,
    .ga-plan-featured,
    .ga-contact-panel {
        animation: none;
    }

    .ga-cursor {
        display: none;
    }

    .ga-search-query {
        max-width: none;
        border-right: 0;
    }
}

.ga-results {
    padding: 88px 0 96px;
}

.ga-results > .ga-wrap > h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 40px;
    max-width: 18ch;
}

.ga-funnel {
    position: relative;
    display: grid;
    gap: 18px;
}

.ga-funnel article {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 28px 26px 30px;
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.12);
    box-shadow: 0 18px 40px rgba(24, 119, 242, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ga-funnel article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(24, 119, 242, 0.16);
}

.ga-funnel article::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1877F2, #0866FF);
    opacity: 0.9;
}

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

.ga-funnel-num {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #1877F2;
    letter-spacing: -0.06em;
    opacity: 0.28;
}

.ga-funnel .ga-icon {
    margin-bottom: 0;
    animation: ga-icon-pulse 3.6s ease-in-out infinite;
}

.ga-funnel article:nth-child(2) .ga-icon {
    animation-delay: 0.5s;
}

.ga-funnel article:nth-child(3) .ga-icon {
    animation-delay: 1s;
}

.ga-funnel h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.ga-funnel p {
    color: #555;
    font-size: 15px;
}

.ga-icon {
    margin-bottom: 16px;
    font-size: 16px;
}

.ga-offer {
    padding: 72px 0;
    background: #fff;
}

.ga-offer h2,
.ga-flow h2,
.ga-faq h2,
.ga-contact h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.ga-offer-intro {
    max-width: 52ch;
    margin-bottom: 36px;
}

.ga-plans {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .ga-offer .ga-wrap {
        width: min(1200px, calc(100% - 32px));
    }

    .ga-plans {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    .ga-plan {
        padding: 20px 16px;
    }

    .ga-plan h3 {
        font-size: 20px;
    }

    .ga-plan-lead,
    .ga-plan li {
        font-size: 13px;
    }
}

.ga-plan {
    display: flex;
    flex-direction: column;
    background: #f0f2f5;
    border: 1px solid rgba(24, 119, 242, 0.12);
    border-radius: 20px;
    padding: 26px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ga-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.28);
}

.ga-plan-featured {
    background: #fff;
    border: 2px solid #1877F2;
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.14);
    animation: ga-featured 4s ease-in-out infinite;
}

.ga-plan-featured:hover {
    box-shadow: 0 22px 48px rgba(24, 119, 242, 0.22);
}

.ga-plan-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1877F2;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ga-plan-tag span {
    letter-spacing: 0.02em;
    text-transform: none;
    background: #1877F2;
    color: #fff;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
}

.ga-plan h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.ga-plan-lead {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.ga-plan ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
    flex-grow: 1;
}

.ga-plan li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #050505;
}

.ga-plan li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1877F2;
}

.ga-plan .ga-btn,
.ga-plan .ga-btn-ghost {
    width: 100%;
    font-size: 14px;
    padding: 11px 16px;
}

.ga-flow {
    padding: 88px 0;
}

.ga-flow > .ga-wrap > h2 {
    margin-bottom: 12px;
}

.ga-flow-intro {
    max-width: 46ch;
    margin-bottom: 40px;
    color: #555;
}

.ga-log {
    list-style: none;
    max-width: 720px;
    border-left: 2px solid rgba(24, 119, 242, 0.22);
    padding-left: 36px;
}

.ga-log li {
    position: relative;
    padding-bottom: 16px;
}

.ga-log li:last-child {
    padding-bottom: 0;
}

.ga-log-n {
    position: absolute;
    left: -50px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1877F2;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #f0f2f5;
}

.ga-log-card {
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.12);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 28px rgba(24, 119, 242, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.ga-log-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(24, 119, 242, 0.12);
}

.ga-log h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.ga-log p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.ga-faq {
    padding: 8px 0 88px;
}

.ga-faq h2 {
    margin-bottom: 28px;
}

.ga-faq-list {
    max-width: 760px;
    display: grid;
    gap: 10px;
}

.ga-faq-list details {
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.12);
    border-radius: 14px;
    padding: 0 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ga-faq-list details:hover,
.ga-faq-list details[open] {
    border-color: rgba(24, 119, 242, 0.28);
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.08);
}

.ga-faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: #050505;
    padding: 16px 0;
    list-style: none;
}

.ga-faq-list summary::-webkit-details-marker {
    display: none;
}

.ga-faq-list summary::after {
    content: '+';
    float: right;
    color: #1877F2;
    font-weight: 800;
}

.ga-faq-list details[open] summary::after {
    content: '–';
}

.ga-faq-list details p {
    margin: 0 0 16px;
    color: #555;
    font-size: 15px;
}

.ga-contact {
    padding: 40px 0 88px;
}

.ga-contact-panel {
    position: relative;
    display: grid;
    gap: 28px;
    background: linear-gradient(135deg, #1877F2 0%, #0866FF 42%, #E4405F 100%);
    background-size: 180% 180%;
    animation: ga-panel-shift 10s ease infinite;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(24, 119, 242, 0.28);
}

.ga-contact-copy {
    color: #fff;
}

.ga-contact-copy .ga-eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.ga-contact-copy h2 {
    color: #fff;
    margin-bottom: 12px;
}

.ga-contact-copy p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    max-width: 36ch;
}

.ga-mail-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.ga-mail-pill:hover {
    background: rgba(255, 255, 255, 0.22);
}

.ga-form {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    display: grid;
    gap: 12px;
}

.ga-pick-note {
    display: none;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f2f5, #e7f3ff);
    color: #050505;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.ga-pick-note.is-on {
    display: flex;
    animation: ga-pick-in 0.45s ease;
}

.ga-pick-note i {
    color: #1877F2;
    margin-top: 2px;
}

.ga-contact-panel.ga-call {
    animation: ga-call-panel 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ga-form.ga-call {
    animation: ga-call-form 1.8s ease;
}

.ga-form.ga-call::before,
.ga-form.ga-call::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    pointer-events: none;
    border: 3px solid rgba(255, 255, 255, 0.95);
    animation: ga-call-ring 1.4s ease-out;
}

.ga-form.ga-call::after {
    inset: -22px;
    border-width: 2px;
    border-color: rgba(255, 214, 90, 0.85);
    animation-delay: 0.12s;
}

.ga-form-pointer {
    display: none;
    position: absolute;
    right: 28px;
    bottom: 58px;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(5, 5, 5, 0.25));
}

.ga-form.ga-call .ga-form-pointer {
    display: block;
    animation: ga-form-cursor 2.2s ease forwards;
}

.ga-form-ripple {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #1877F2;
    opacity: 0;
}

.ga-form.ga-call .ga-form-ripple {
    animation: ga-form-ripple 2.2s ease-out forwards;
}

@keyframes ga-pick-in {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ga-call-panel {
    0% {
        transform: scale(0.94);
        filter: brightness(1);
    }
    22% {
        transform: scale(1.045);
        filter: brightness(1.12);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.45), 0 32px 80px rgba(5, 5, 5, 0.35);
    }
    55%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes ga-call-form {
    0%, 100% {
        transform: scale(1);
        box-shadow: none;
    }
    18%, 42% {
        transform: scale(1.015);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.95), 0 18px 40px rgba(5, 5, 5, 0.18);
    }
}

@keyframes ga-call-ring {
    0% {
        opacity: 1;
        transform: scale(0.92);
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes ga-form-cursor {
    0% {
        transform: translate(70px, 50px) scale(1);
        opacity: 0;
    }
    16% {
        opacity: 1;
    }
    42% {
        transform: translate(8px, 8px) scale(1);
    }
    52% {
        transform: translate(8px, 12px) scale(0.86);
    }
    62% {
        transform: translate(8px, 8px) scale(1);
    }
    86% {
        opacity: 1;
    }
    100% {
        transform: translate(40px, 36px) scale(1);
        opacity: 0;
    }
}

@keyframes ga-form-ripple {
    0%, 46% {
        opacity: 0;
        transform: scale(0.4);
    }
    52% {
        opacity: 0.85;
        transform: scale(0.7);
    }
    78% {
        opacity: 0;
        transform: scale(2.6);
    }
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ga-contact-panel.ga-call,
    .ga-form.ga-call,
    .ga-form.ga-call::before,
    .ga-form.ga-call::after,
    .ga-form.ga-call .ga-form-pointer,
    .ga-form.ga-call .ga-form-ripple,
    .ga-pick-note.is-on {
        animation: none;
    }

    .ga-form-pointer {
        display: none !important;
    }
}

.ga-form-pair {
    display: grid;
    gap: 12px;
}

.ga-form label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    color: #050505;
    font-size: 13px;
}

.ga-form input,
.ga-form textarea {
    width: 100%;
    border: 1px solid #e4e6eb;
    background: #f7f8fa;
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    color: #050505;
}

.ga-form input:focus,
.ga-form textarea:focus {
    outline: none;
    border-color: #1877F2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(24, 119, 242, 0.1);
}

.ga-form textarea {
    min-height: 96px;
    resize: vertical;
}

.ga-check {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500 !important;
    color: #4a4a4a !important;
}

.ga-check input {
    width: auto;
    margin-top: 3px;
}

.ga-check a {
    color: #1877F2;
    font-weight: 700;
}

.ga-hp {
    display: none;
}

.ga-form-msg {
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

.ga-form-msg.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
}

.ga-form-msg.error {
    display: block;
    background: #ffebee;
    color: #c62828;
}

.ga-footer {
    padding: 28px 0 40px;
    color: #6b6b80;
    font-size: 14px;
}

.ga-footer .ga-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.ga-footer a {
    margin-left: 16px;
}

.ga-footer a i {
    margin-right: 6px;
    color: #1877F2;
}

.ga-footer a:hover {
    color: #1877F2;
}

@media (min-width: 900px) {
    .ga-nav {
        display: flex;
    }

    .ga-menu {
        display: none;
    }

    .ga-hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 48px;
    }

    .ga-hero {
        padding: 80px 0 72px;
    }

    .ga-funnel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .ga-funnel article:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 46px;
        right: -20px;
        width: 14px;
        height: 14px;
        border-top: 3px solid #1877F2;
        border-right: 3px solid #1877F2;
        transform: rotate(45deg);
        opacity: 0.4;
        z-index: 2;
    }

    .ga-contact-panel {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 20px;
        padding: 20px;
        align-items: stretch;
    }

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

    .ga-contact-copy {
        padding: 28px 20px 28px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ga-log {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        max-width: none;
        border-left: 0;
        padding-left: 0;
    }

    .ga-log li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        gap: 12px;
    }

    .ga-log-n {
        position: static;
        box-shadow: 0 0 0 6px #f0f2f5;
    }
}

@media (max-width: 899px) {
    .ga-nav.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px 28px;
        gap: 16px;
        box-shadow: 0 16px 40px rgba(5, 5, 5, 0.08);
    }

    .ga-hero-actions .ga-btn,
    .ga-hero-actions .ga-btn-ghost {
        flex: 1 1 auto;
        justify-content: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ga-serp {
        padding: 16px;
        animation: none;
    }

    .ga-ad-title {
        font-size: 18px;
    }

    .ga-cursor {
        display: none;
    }
}

.ma-feed {
    padding: 16px 16px 14px;
}

.ma-post {
    position: relative;
    background: #fff;
    border: 1px solid rgba(24, 119, 242, 0.16);
    border-radius: 16px;
    overflow: hidden;
    animation: ga-ad-press 4.8s ease infinite;
}

.ma-post-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 8px;
}

.ma-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1877F2, #E4405F);
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ma-post-meta {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.ma-post-meta strong {
    color: #050505;
    font-size: 14px;
}

.ma-post-meta span {
    color: #65676b;
    font-size: 12px;
}

.ma-post-copy {
    padding: 4px 16px 12px;
    font-size: 14px;
    color: #050505;
    line-height: 1.45;
}

.ma-post-visual {
    position: relative;
    height: 168px;
    overflow: hidden;
    background: linear-gradient(135deg, #1877F2 0%, #833AB4 42%, #E4405F 72%, #F77737 100%);
}

.ma-story {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
}

.ma-story-a {
    width: 160px;
    height: 160px;
    left: -30px;
    top: -20px;
    background: rgba(255, 255, 255, 0.28);
}

.ma-story-b {
    width: 140px;
    height: 140px;
    right: -20px;
    bottom: -40px;
    background: rgba(251, 188, 5, 0.35);
}

.ma-story-label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.28);
    padding: 6px 10px;
    border-radius: 999px;
}

.ma-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #f0f2f5;
    border-top: 1px solid #e4e6eb;
}

.ma-cta-bar p {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #65676b;
}

.ma-cta-bar strong {
    display: block;
    color: #050505;
    font-size: 14px;
    margin-top: 2px;
}

.ma-cta-bar span {
    flex-shrink: 0;
    background: #e4e6eb;
    color: #050505;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    animation: ga-link-hit 4.8s ease infinite;
}

.ma-actions {
    display: flex;
    justify-content: space-around;
    padding: 10px 8px 12px;
    border-top: 1px solid #e4e6eb;
    color: #65676b;
    font-size: 13px;
    font-weight: 600;
}

.ma-feed .ga-cursor {
    left: auto;
    right: 18%;
    top: 62%;
}

@media (max-width: 899px) {
    .ma-post-visual {
        height: 132px;
    }
}
