:root {
    --en-blue: #27a8f2;
    --en-blue-dark: #0b84d8;
    --en-ink: #101828;
    --en-muted: #52657a;
    --en-line: #dceaf5;
    --en-soft: #f4f9fd;
    --en-card: #ffffff;
    --en-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    direction: ltr;
    scroll-behavior: smooth;
}

body.en-page {
    margin: 0;
    color: var(--en-ink);
    background: #f7fbff;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.en-page a {
    color: inherit;
    text-decoration: none;
}

.en-page img {
    display: block;
    max-width: 100%;
}

.en-icon {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.en-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--en-blue);
    background: #eef8ff;
    border: 1px solid #d6edff;
    border-radius: 12px;
}

.en-container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.en-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--en-line);
    backdrop-filter: blur(18px);
}

.en-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.en-brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.en-brand-logo {
    display: block;
    width: 168px;
    height: auto;
}

.en-footer .en-brand-logo {
    width: 158px;
}

.en-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #26384d;
    font-size: 15px;
    font-weight: 650;
}

.en-nav a {
    transition: color 0.18s ease;
}

.en-nav a:hover,
.en-nav a.is-active {
    color: var(--en-blue-dark);
}

.en-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.en-header-cta,
.en-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 750;
    white-space: nowrap;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}

.en-header-cta,
.en-btn-primary {
    color: #ffffff;
    background: var(--en-blue);
}

.en-page .en-header-cta,
.en-page .en-btn-primary,
.en-header-cta:visited,
.en-header-cta:hover,
.en-header-cta:focus-visible,
.en-btn-primary:visited,
.en-btn-primary:hover,
.en-btn-primary:focus-visible {
    color: #ffffff;
}

.en-btn-secondary {
    color: var(--en-blue-dark);
    background: #ffffff;
    border-color: var(--en-blue);
}

.en-btn-ghost {
    color: #29425c;
    background: #ffffff;
    border-color: var(--en-line);
}

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

.en-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--en-blue);
    border-radius: 8px;
    background: #ffffff;
}

.en-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--en-blue);
    border-radius: 999px;
}

.en-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(238, 248, 255, 0.82) 100%),
        url("/assets/images/patterns/novinhub-cta-pattern.svg") center / cover no-repeat;
    border-bottom: 1px solid var(--en-line);
}

.en-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: 56px;
}

.en-hero-copy {
    max-width: 720px;
}

.en-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    color: var(--en-blue-dark);
    background: #eaf6ff;
    border: 1px solid #cceaff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.en-hero h1,
.en-page-title {
    margin: 18px 0 18px;
    color: #111827;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.en-hero-text,
.en-lead {
    margin: 0;
    color: var(--en-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.9;
}

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

.en-hero-panel {
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 10px;
    box-shadow: var(--en-shadow);
}

.en-dashboard-card {
    display: grid;
    gap: 14px;
}

.en-dashboard-card h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 850;
}

.en-dashboard-row {
    display: grid;
    grid-template-columns: 22px 72px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--en-soft);
    border: 1px solid var(--en-line);
    border-radius: 8px;
    color: #41566d;
    font-size: 14px;
    font-weight: 700;
}

.en-dashboard-row .en-icon {
    color: var(--en-blue);
}

.en-dashboard-row strong {
    color: var(--en-blue-dark);
}

.en-bar {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #bfe5fb, var(--en-blue));
}

.en-section {
    padding: 74px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--en-line);
}

.en-brand-strip {
    padding: 28px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--en-line);
}

.en-brand-strip p {
    margin: 0 0 18px;
    color: var(--en-muted);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.en-logo-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.en-logo-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 8px;
}

.en-logo-list img {
    width: auto;
    max-width: 136px;
    max-height: 36px;
    object-fit: contain;
}

.en-section-soft {
    background: #f7fbff;
}

.en-section-head {
    max-width: 790px;
    margin-bottom: 34px;
}

.en-section-head.center {
    margin-inline: auto;
    text-align: center;
}

.en-section h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 900;
}

.en-section-head p {
    margin: 0;
    color: var(--en-muted);
    font-size: 18px;
    line-height: 1.85;
}

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

.en-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.en-card {
    position: relative;
    min-height: 100%;
    padding: 26px;
    background: var(--en-card);
    border: 1px solid var(--en-line);
    border-radius: 8px;
}

.en-card:hover {
    border-color: #a6dfff;
}

.en-card-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    color: var(--en-blue-dark);
    background: #edf8ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.en-card-kicker .en-icon {
    width: 22px;
    height: 22px;
}

.en-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 850;
}

.en-card p,
.en-card li {
    color: var(--en-muted);
}

.en-card p {
    margin: 0;
}

.en-bento {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 18px;
}

.en-bento-card {
    min-height: 260px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 255, 0.92)),
        #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 8px;
}

.en-bento-large {
    grid-row: span 2;
}

.en-bento-card h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.22;
    font-weight: 900;
}

.en-bento-card p {
    margin: 0;
    color: var(--en-muted);
    font-size: 17px;
}

.en-mini-inbox {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.en-mini-inbox span {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 8px;
}

.en-mini-inbox strong {
    color: #25384f;
    font-size: 15px;
}

.en-mini-inbox em {
    color: var(--en-blue-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.en-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.en-list li {
    position: relative;
    padding-left: 22px;
}

.en-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    background: var(--en-blue);
    border-radius: 999px;
}

.en-plan-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.en-plan-price {
    color: #111827;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.en-plan-price span {
    color: var(--en-muted);
    font-size: 14px;
    font-weight: 700;
}

.en-plan-card .en-btn {
    margin-top: auto;
}

.en-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--en-line);
    border-radius: 8px;
    background: #ffffff;
}

.en-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.en-table th,
.en-table td {
    padding: 18px;
    border-bottom: 1px solid var(--en-line);
    text-align: left;
    vertical-align: top;
}

.en-table th {
    color: #111827;
    background: #f8fbfe;
    font-size: 15px;
    font-weight: 850;
}

.en-table td {
    color: var(--en-muted);
    font-weight: 650;
}

.en-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
}

.en-channel-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.en-channel-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    color: #29425c;
    background: #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
}

.en-cta {
    overflow: hidden;
    padding: 64px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(39, 168, 242, 0.97), rgba(18, 145, 224, 0.92)),
        url("/assets/images/patterns/novinhub-cta-pattern.svg") center / cover no-repeat;
    background-blend-mode: normal, soft-light;
}

.en-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.en-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 900;
}

.en-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.en-cta .en-btn {
    color: var(--en-blue-dark);
    background: #ffffff;
    border-color: #ffffff;
}

.en-footer {
    background: #ffffff;
    border-top: 1px solid var(--en-line);
}

.en-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 32px;
    padding: 56px 0 40px;
}

.en-footer-brand p,
.en-footer-column a {
    color: var(--en-muted);
}

.en-footer-brand p {
    margin: 16px 0 0;
}

.en-footer-heading {
    margin: 0 0 14px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

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

.en-footer-bottom {
    padding: 18px 0;
    color: var(--en-muted);
    border-top: 1px solid var(--en-line);
    font-size: 14px;
}

.en-legal {
    display: grid;
    gap: 24px;
}

.en-legal article {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--en-line);
    border-radius: 8px;
}

.en-legal h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

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

.en-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.en-muted-note {
    display: inline-flex;
    margin-top: 14px;
    color: var(--en-muted);
    font-size: 14px;
}

@media (max-width: 960px) {
    .en-header-inner {
        min-height: 70px;
    }

    .en-menu-toggle {
        display: inline-block;
    }

    .en-nav {
        position: absolute;
        top: 70px;
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: #ffffff;
        border: 1px solid var(--en-line);
        border-radius: 8px;
        box-shadow: var(--en-shadow);
    }

    .en-menu-open .en-nav {
        display: flex;
    }

    .en-nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--en-line);
    }

    .en-nav a:last-child {
        border-bottom: 0;
    }

    .en-header-cta {
        display: none;
    }

    .en-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .en-grid,
    .en-grid-4,
    .en-contact-grid,
    .en-footer-grid,
    .en-logo-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .en-bento,
    .en-split {
        grid-template-columns: 1fr;
    }

    .en-bento-large {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .en-container {
        width: min(100% - 32px, 1180px);
    }

    .en-brand-logo {
        width: 142px;
    }

    .en-footer .en-brand-logo {
        width: 148px;
    }

    .en-hero {
        padding: 58px 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
            url("/assets/images/patterns/novinhub-cta-pattern.svg") center / cover no-repeat;
    }

    .en-hero h1,
    .en-page-title {
        font-size: 40px;
    }

    .en-actions,
    .en-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .en-grid,
    .en-grid-4,
    .en-contact-grid,
    .en-footer-grid,
    .en-logo-list {
        grid-template-columns: 1fr;
    }

    .en-section {
        padding: 56px 0;
    }

    .en-card {
        padding: 22px;
    }

    .en-cta {
        padding: 54px 0;
    }
}
