* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.tw-index-page {
    min-height: 100vh;
    background: #f5f8fb;
    color: #132238;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.tw-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.tw-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(207, 217, 230, 0.75);
}

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

.tw-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #132238;
    text-decoration: none;
}

.tw-brand-logo {
    width: 58px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.tw-brand strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    color: #0f274f;
    margin-bottom: 5px;
}

.tw-brand span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #63748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tw-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #415169;
    font-size: 14px;
    font-weight: 850;
    transition: all 0.2s ease;
}

.tw-nav a:hover {
    background: #eef4ff;
    color: #1762d1;
}

.tw-nav-login {
    background: #eef4ff;
    color: #1762d1 !important;
}

.tw-nav-cta {
    background: #00939a !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(0, 147, 154, 0.22);
}

.tw-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #eef4ff;
    color: #00939a;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
}

.tw-mobile-nav {
    display: none;
    padding: 0 24px 18px;
}

.tw-mobile-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 12px;
    padding: 0 14px;
    text-decoration: none;
    color: #132238;
    font-weight: 850;
}

.tw-mobile-nav a:hover {
    background: #eef4ff;
}

/* Hero */
.tw-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 82px;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 147, 154, 0.14), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(236, 184, 51, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.tw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 39, 79, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 79, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.tw-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 58px;
    align-items: center;
}

.tw-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce7f3;
    color: #00939a;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 44, 91, 0.05);
    margin-bottom: 22px;
}

.tw-pill span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ecb833;
}

.tw-hero h1 {
    margin: 0;
    color: #0f274f;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.tw-hero p {
    margin: 24px 0 0;
    color: #526176;
    font-size: 18px;
    line-height: 1.65;
    max-width: 700px;
}

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

/* Buttons */
.tw-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tw-btn-primary {
    background: linear-gradient(135deg, #00939a 0%, #05747a 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 147, 154, 0.24);
}

.tw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 147, 154, 0.28);
}

.tw-btn-light {
    background: #ffffff;
    color: #00939a;
    border: 1px solid #dce7f3;
}

.tw-btn-light:hover {
    background: #f7fbff;
}

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

.tw-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.tw-hero-proof div {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid #e2ebf5;
    border-radius: 18px;
    padding: 15px;
}

.tw-hero-proof strong {
    display: block;
    color: #0f274f;
    font-size: 15px;
    margin-bottom: 6px;
}

.tw-hero-proof span {
    display: block;
    color: #6a7b92;
    font-size: 13px;
    line-height: 1.4;
}

/* Hero visual */
.tw-hero-visual {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tw-logo-orbit {
    position: absolute;
    top: 20px;
    right: 36px;
    width: 210px;
    height: 160px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid #e2ebf5;
    box-shadow: 0 24px 60px rgba(15, 44, 91, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(2deg);
}

.tw-logo-orbit img {
    width: 166px;
    height: auto;
    display: block;
}

.tw-dashboard-card {
    width: 100%;
    max-width: 430px;
    margin-top: 90px;
    background: #ffffff;
    border: 1px solid #e2ebf5;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 28px 80px rgba(15, 44, 91, 0.15);
}

.tw-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tw-dashboard-top span {
    display: block;
    color: #7a8ba3;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.tw-dashboard-top strong {
    display: block;
    color: #0f274f;
    font-size: 24px;
}

.tw-dashboard-status {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e9f8f6;
    color: #00939a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.tw-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.tw-metrics div {
    background: #f7fbff;
    border: 1px solid #e8f0f8;
    border-radius: 18px;
    padding: 14px;
}

.tw-metrics span {
    display: block;
    color: #71829d;
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 8px;
}

.tw-metrics strong {
    display: block;
    color: #0f274f;
    font-size: 22px;
}

.tw-dashboard-list {
    display: grid;
    gap: 10px;
}

.tw-dashboard-list div {
    min-height: 58px;
    border: 1px solid #edf3fa;
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 12px 1fr auto;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green {
    background: #00939a;
}

.dot.yellow {
    background: #ecb833;
}

.dot.blue {
    background: #1762d1;
}

.tw-dashboard-list strong {
    display: block;
    color: #26384f;
    font-size: 13px;
}

.tw-dashboard-list small {
    color: #7a8ba3;
    font-size: 12px;
    font-weight: 800;
}

/* Sections */
.tw-section {
    padding: 82px 0;
}

.tw-section-light {
    background: #ffffff;
}

.tw-section-title {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.tw-section-title.left {
    margin: 0;
    text-align: left;
}

.tw-section-title span {
    display: inline-block;
    color: #00939a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.tw-section-title h2 {
    margin: 0;
    color: #0f274f;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tw-section-title p {
    margin: 16px 0 0;
    color: #5f7088;
    font-size: 17px;
    line-height: 1.65;
}

/* Audience */
.tw-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tw-audience-card {
    background: #f8fbff;
    border: 1px solid #e4edf7;
    border-radius: 22px;
    padding: 22px;
    min-height: 174px;
}

.tw-audience-card strong {
    display: block;
    color: #0f274f;
    font-size: 18px;
    margin-bottom: 10px;
}

.tw-audience-card span {
    color: #63748b;
    font-size: 14px;
    line-height: 1.55;
}

/* Modules */
.tw-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tw-module-card {
    background: #ffffff;
    border: 1px solid #e4edf7;
    border-radius: 24px;
    padding: 22px;
    min-height: 230px;
    box-shadow: 0 12px 34px rgba(15, 44, 91, 0.05);
    transition: all 0.2s ease;
}

.tw-module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 44, 91, 0.09);
}

.tw-module-card.featured {
    background: linear-gradient(135deg, #00939a 0%, #06767c 100%);
    color: #ffffff;
}

.tw-module-card.featured h3,
.tw-module-card.featured p {
    color: #ffffff;
}

.tw-module-card.featured .tw-module-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.tw-module-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #eef9f8;
    color: #00939a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 18px;
}

.tw-module-card h3 {
    margin: 0 0 10px;
    color: #0f274f;
    font-size: 20px;
}

.tw-module-card p {
    margin: 0;
    color: #63748b;
    font-size: 14px;
    line-height: 1.55;
}

/* Flow */
.tw-flow-section {
    background: #0f1d35;
    color: #ffffff;
}

.tw-flow-section .tw-section-title h2 {
    color: #ffffff;
}

.tw-flow-section .tw-section-title p {
    color: #b9c7da;
}

.tw-flow-section .tw-section-title span {
    color: #ecb833;
}

.tw-flow-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.tw-flow {
    display: grid;
    gap: 14px;
}

.tw-flow div {
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 22px;
    padding: 20px;
}

.tw-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(236, 184, 51, 0.16);
    color: #ecb833;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.tw-flow strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 7px;
}

.tw-flow p {
    margin: 0;
    color: #b9c7da;
    font-size: 14px;
    line-height: 1.55;
}

/* Price */
.tw-price-section {
    background: #ffffff;
}

.tw-price-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: center;
}

.tw-price-card {
    background: #ffffff;
    border: 1px solid #e4edf7;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 28px 70px rgba(15, 44, 91, 0.12);
}

.tw-price-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff7dd;
    color: #a16f00;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.tw-price-card h3 {
    margin: 0;
    color: #0f274f;
    font-size: 24px;
}

.tw-price {
    margin: 20px 0;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    color: #0f274f;
}

.tw-price span {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 7px;
}

.tw-price strong {
    font-size: 66px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.tw-price small {
    color: #6b7b91;
    font-size: 17px;
    font-weight: 850;
    margin-bottom: 8px;
}

.tw-price-card ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.tw-price-card li {
    color: #526176;
    font-size: 15px;
    line-height: 1.45;
    padding-left: 26px;
    position: relative;
}

.tw-price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #00939a;
    font-weight: 900;
}

/* Final CTA */
.tw-final-cta {
    padding: 78px 0;
    background: #f5f8fb;
}

.tw-final-card {
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 147, 154, 0.2), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(236, 184, 51, 0.2), transparent 34%),
        #0f1d35;
    color: #ffffff;
    border-radius: 34px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    box-shadow: 0 28px 70px rgba(15, 29, 53, 0.2);
}

.tw-final-card span {
    color: #ecb833;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.tw-final-card h2 {
    margin: 10px 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tw-final-card p {
    margin: 0;
    color: #b9c7da;
    font-size: 16px;
    line-height: 1.6;
}

.tw-final-actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

/* Footer */
.tw-footer {
    background: #ffffff;
    border-top: 1px solid #e4edf7;
    padding: 22px 0;
}

.tw-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tw-footer-content div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tw-footer img {
    width: 46px;
    height: 34px;
    object-fit: contain;
}

.tw-footer strong {
    color: #0f274f;
}

.tw-footer span {
    color: #71829d;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1080px) {
    .tw-hero-grid,
    .tw-flow-grid,
    .tw-price-grid {
        grid-template-columns: 1fr;
    }

    .tw-hero-visual {
        min-height: 460px;
    }

    .tw-audience-grid,
    .tw-modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tw-section-title.left {
        max-width: 760px;
    }
}

@media (max-width: 860px) {
    .tw-nav {
        display: none;
    }

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

    .tw-mobile-nav.open {
        display: grid;
        gap: 4px;
    }

    .tw-hero {
        padding: 52px 0 64px;
    }

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

    .tw-final-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .tw-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .tw-final-actions .tw-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .tw-container {
        padding: 0 16px;
    }

    .tw-brand-logo {
        width: 50px;
        height: 38px;
    }

    .tw-brand strong {
        font-size: 19px;
    }

    .tw-hero h1 {
        font-size: 40px;
    }

    .tw-hero p {
        font-size: 16px;
    }

    .tw-hero-actions,
    .tw-btn {
        width: 100%;
    }

    .tw-hero-visual {
        min-height: 420px;
    }

    .tw-logo-orbit {
        top: 0;
        right: 8px;
        width: 164px;
        height: 128px;
    }

    .tw-logo-orbit img {
        width: 132px;
    }

    .tw-dashboard-card {
        margin-top: 96px;
        padding: 18px;
        border-radius: 24px;
    }

    .tw-metrics {
        grid-template-columns: 1fr;
    }

    .tw-audience-grid,
    .tw-modules-grid {
        grid-template-columns: 1fr;
    }

    .tw-section {
        padding: 58px 0;
    }

    .tw-price-card,
    .tw-final-card {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .tw-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
