:root {
    --navy: #0c2e46;
    --blue: #1f72b8;
    --green: #20b38e;
    --white: #ffffff;
    --light: #f5f8fa;
    --lighter-blue: #eef6fb;
    --lighter-green: #edf9f6;
    --text: #263b49;
    --muted: #687b88;
    --border: #dbe5eb;
    --shadow: 0 22px 55px rgba(12, 46, 70, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: var(--white);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(219, 229, 235, 0.95);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    color: var(--navy);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 21px;
}

.main-nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-button,
.menu-button,
.footer-language {
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-weight: 700;
}

.menu-button {
    display: none;
    font-size: 25px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    background: var(--blue);
    color: var(--white);
    cursor: pointer;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 27px rgba(31, 114, 184, 0.24);
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
}

.button-outline {
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
}

.button-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.why-content h2,
.download-heading h2,
.support-grid h2,
.priority-grid h2,
.pricing-cta h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.section-heading > p:last-child,
.download-heading > p:last-child,
.support-grid > div > p:last-child {
    margin: 17px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(32, 179, 142, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(31, 114, 184, 0.14),
            transparent 27%
        ),
        linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.hero-heading {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.hero-heading h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(52px, 8vw, 84px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero-text {
    max-width: 770px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.app-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.app-choice-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.app-choice-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 70px rgba(12, 46, 70, 0.15);
}

.user-card {
    border-top: 6px solid var(--green);
}

.pro-card {
    border-top: 6px solid var(--blue);
}

.app-logo-frame,
.download-logo-frame {
    width: 100%;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 17px;
    background: var(--white);
}

.app-logo {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

.app-label {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pro-card .app-label {
    color: var(--blue);
}

.app-choice-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.app-description {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.app-benefits {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.app-benefits li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 28px;
    line-height: 1.5;
}

.app-benefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.pro-card .app-benefits li::before {
    color: var(--blue);
}

.user-button {
    background: var(--green);
}

/* DISCOVERY */

.discover-section,
.how-section,
.business-categories-section,
.plans-intro-section,
.faq-section,
.pricing-section,
.advertising-section {
    padding: 100px 0;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.discover-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(12, 46, 70, 0.07);
    transition: transform 0.2s ease;
}

.discover-card:hover {
    transform: translateY(-5px);
}

.discover-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 18px;
    background: var(--lighter-green);
    font-size: 31px;
}

.discover-card:nth-child(even) .discover-icon {
    background: var(--lighter-blue);
}

.discover-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
}

.discover-card p {
    margin: 15px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

/* HOW IT WORKS */

.how-section {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 13px 34px rgba(12, 46, 70, 0.06);
}

.step-number {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
}

.step-card h3 {
    margin: 21px 0 10px;
    color: var(--navy);
    font-size: 23px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* WHY BUSKA */

.why-section {
    padding: 105px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

.why-content > p {
    color: var(--muted);
    line-height: 1.8;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 27px;
}

.feature-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
}

.feature-item span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lighter-green);
    color: var(--green);
    font-weight: 800;
}

.feature-item p {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.visual-panel {
    max-width: 500px;
    padding: 30px;
    border: 9px solid var(--navy);
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 35px 72px rgba(12, 46, 70, 0.2);
}

.visual-search {
    padding: 17px;
    border-radius: 12px;
    background: var(--light);
    color: var(--muted);
}

.visual-result {
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    gap: 15px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.visual-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 28px;
}

.green-icon {
    background: var(--lighter-green);
}

.blue-icon {
    background: var(--lighter-blue);
}

.navy-icon {
    background: #edf0f2;
}

.visual-result strong {
    color: var(--navy);
}

.visual-result p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/* BUSINESS CATEGORIES */

.business-categories-section {
    background: var(--navy);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.category-card span {
    font-size: 34px;
}

.category-card h3 {
    margin: 18px 0 9px;
    font-size: 20px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* PLAN INTRO */

.plan-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-feature-card {
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.plan-feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--lighter-green);
    font-size: 29px;
}

.priority-card .plan-feature-icon {
    background: var(--lighter-blue);
}

.advertising-card .plan-feature-icon {
    background: #f7f0ff;
}

.plan-feature-card h3 {
    margin: 22px 0 11px;
    color: var(--navy);
    font-size: 23px;
}

.plan-feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* DOWNLOAD */

.download-section {
    padding: 100px 0;
}

.download-panel {
    padding: 55px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(32, 179, 142, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(31, 114, 184, 0.16),
            transparent 32%
        ),
        var(--light);
}

.download-heading {
    max-width: 750px;
    margin: 0 auto 42px;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.download-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 14px 35px rgba(12, 46, 70, 0.07);
}

.download-logo-frame {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
}

.download-logo-frame img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

.download-card h3 {
    margin: 22px 0 10px;
    color: var(--navy);
    font-size: 25px;
}

.download-card p {
    color: var(--muted);
    line-height: 1.65;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 23px;
}

.store-buttons a {
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
}

.user-download .store-buttons a:first-child {
    background: var(--green);
}

.pro-download .store-buttons a:first-child {
    background: var(--blue);
}

.store-buttons .coming-soon {
    background: #e5ebef;
    color: var(--muted);
    pointer-events: none;
}

/* SUPPORT */

.support-section {
    padding: 78px 0;
    background: var(--lighter-blue);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.support-actions {
    display: flex;
    gap: 12px;
}

/* FAQ */

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
}

.faq-question span {
    font-size: 25px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 24px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 220px;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

/* PRICING PAGE */

.pricing-hero {
    padding: 95px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(31, 114, 184, 0.18),
            transparent 30%
        ),
        linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.pricing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.pricing-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.7px;
}

.pricing-hero p:not(.eyebrow) {
    margin: 24px 0 31px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.pricing-logo-panel {
    padding: 38px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-logo-panel img {
    width: 100%;
    max-width: 380px;
    height: 150px;
    object-fit: contain;
}

.pricing-logo-panel strong {
    display: block;
    margin-top: 18px;
    color: var(--navy);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.semiannual-card {
    border-top: 6px solid var(--blue);
}

.best-value-card {
    border: 2px solid var(--green);
    transform: translateY(-10px);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: 24px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-label {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 13px 0;
    color: var(--navy);
    font-size: 28px;
}

.price-placeholder {
    margin: 5px 0 18px;
    color: var(--navy);
    font-size: 23px;
    font-weight: 800;
}

.pricing-description {
    color: var(--muted);
    line-height: 1.7;
}

.pricing-card ul,
.advertising-card ul,
.large-check-list {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-card li,
.advertising-card li,
.large-check-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    line-height: 1.55;
}

.pricing-card li::before,
.advertising-card li::before,
.large-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.pricing-card .button {
    width: 100%;
    margin-top: auto;
}

.best-value-button {
    background: var(--green);
}

.pricing-note {
    margin: 30px auto 0;
    max-width: 750px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

.priority-section {
    padding: 105px 0;
    background: var(--lighter-blue);
}

.priority-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 65px;
}

.priority-grid > div:first-child > p {
    color: var(--muted);
    line-height: 1.8;
}

.important-note {
    padding: 15px;
    border-left: 4px solid var(--blue);
    background: var(--white);
    color: var(--navy) !important;
    font-weight: 600;
}

.priority-example {
    padding: 35px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.priority-example-badge {
    display: inline-block;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.priority-example h3 {
    margin: 22px 0 10px;
    color: var(--navy);
    font-size: 29px;
}

.priority-example p {
    color: var(--muted);
    line-height: 1.7;
}

.priority-example-line {
    margin-top: 13px;
    padding: 14px;
    border-radius: 11px;
    background: var(--light);
    font-weight: 600;
}

.advertising-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advertising-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.advertising-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--lighter-green);
    font-size: 30px;
}

.advertising-card:nth-child(2) .advertising-icon {
    background: var(--lighter-blue);
}

.advertising-card:nth-child(3) .advertising-icon {
    background: #f7f0ff;
}

.advertising-card h3 {
    margin: 22px 0 11px;
    color: var(--navy);
    font-size: 23px;
}

.advertising-card > p {
    color: var(--muted);
    line-height: 1.7;
}

.pricing-cta-section {
    padding: 80px 0;
    background: var(--navy);
}

.pricing-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

.pricing-cta h2 {
    color: var(--white);
}

.pricing-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* FOOTER */

.site-footer {
    padding: 72px 0 24px;
    background: #071e2d;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 38px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.66);
}

.footer-grid h3 {
    margin: 0 0 18px;
    font-size: 15px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid a:not(.brand) {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-language {
    color: rgba(255, 255, 255, 0.76);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .main-nav {
        position: fixed;
        top: 76px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 24px 60px rgba(12, 46, 70, 0.18);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 12px;
    }

    .menu-button {
        display: block;
    }

    .header-actions .button-small {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .app-choice-grid,
    .why-grid,
    .pricing-hero-grid,
    .priority-grid {
        grid-template-columns: 1fr;
    }

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-feature-grid,
    .pricing-grid,
    .advertising-grid {
        grid-template-columns: 1fr;
    }

    .best-value-card {
        transform: none;
    }

    .support-grid,
    .pricing-cta {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero,
    .pricing-hero {
        padding: 66px 0 76px;
    }

    .hero-heading h1 {
        font-size: 49px;
        letter-spacing: -2.5px;
    }

    .pricing-hero h1 {
        font-size: 43px;
    }

    .hero-text {
        font-size: 16px;
    }

    .app-choice-card {
        padding: 27px;
    }

    .app-logo-frame,
    .download-logo-frame {
        height: 115px;
    }

    .steps-grid,
    .discover-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .download-panel {
        padding: 34px 20px;
    }

    .support-actions {
        flex-direction: column;
    }

    .support-actions .button,
    .pricing-cta .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 27px;
    }

    .hero-heading h1 {
        font-size: 42px;
    }

    .app-choice-card h2 {
        font-size: 27px;
    }

    .button {
        width: 100%;
    }
}