.hero {
            background: linear-gradient(110deg, #0a4ca1, #2a7de1);
            color: #fff;
            padding: 64px 0 56px;
        }

        .hero-grid {
            display: grid;
            gap: 26px;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
        }

        .hero h1 {
            margin: 0 0 12px;
            font-size: clamp(30px, 5vw, 52px);
            line-height: 1.1;
        }

        .hero p {
            margin: 0 0 22px;
            color: #e4eeff;
            max-width: 62ch;
        }

        .btn-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            border: 0;
            border-radius: 10px;
            padding: 12px 18px;
            font-weight: 700;
            cursor: pointer;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #fff;
            color: var(--brand-dark);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: var(--radius);
            padding: 22px;
            backdrop-filter: blur(4px);
        }

        .hero-card h3 {
            margin: 0 0 10px;
            font-size: 20px;
        }

        .hero-card ul {
            margin: 0;
            padding-left: 20px;
        }

        .hero-card li {
            margin-bottom: 8px;
        }

        section {
            padding: 54px 0;
        }

        .section-title {
            margin: 0 0 12px;
            font-size: clamp(24px, 3vw, 34px);
        }

        .section-subtitle {
            margin: 0 0 26px;
            color: var(--muted);
            max-width: 68ch;
        }

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

        .feature {
            background: var(--card);
            border-radius: 12px;
            padding: 16px;
            box-shadow: var(--shadow);
            border: 1px solid #e3ebfb;
        }

        .feature h4 {
            margin: 0 0 8px;
            font-size: 18px;
        }

        .feature p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .devices-cover {
            background: var(--bg);
            text-align: center;
        }

        .devices-cover-panel {
            background: #fff;
            border: 1px solid #deebff;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 24px 18px;
        }

        .devices-cover .section-title {
            margin-bottom: 8px;
        }

        .devices-cover .section-subtitle {
            margin: 0 auto 20px;
            max-width: 76ch;
            font-size: 14px;
        }

        .device-row {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 12px;
        }

        .device-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            color: #1f2c45;
            font-size: 14px;
            font-weight: 700;
            padding: 18px 12px;
            background: #f7faff;
            border: 1px solid #dce9ff;
            border-radius: 14px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .device-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(0, 87, 184, 0.12);
        }

        .device-image {
            width: 72px;
            height: 72px;
            object-fit: contain;
            display: block;
        }

        .device-item span {
            line-height: 1.3;
        }

        .ts-plans {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .ts-plan {
            display: block;
            background: #e9ebef;
            border-radius: 0;
            padding: 16px;
            border: 1px solid #d0d5dd;
            box-shadow: var(--shadow);
            position: relative;
        }

        .ts-plan-flag {
            width: fit-content;
            margin: 0 auto -6px;
            background: #7b7f86;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 2px;
            position: relative;
            z-index: 1;
        }

        .ts-plan-title {
            background: #2d5fa7;
            color: #fff;
            padding: 14px 18px;
            font-size: 18px;
            margin: 0 -16px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .ts-plan-title strong {
            font-size: 28px;
            line-height: 1;
            font-weight: 700;
            margin-right: 6px;
        }

        .ts-plan-body {
            background: #f3f4f6;
            border: 1px solid #d2d7df;
            border-top: 0;
            padding: 20px 22px 18px;
        }

        .ts-plan-intro {
            margin: 0 0 12px;
            font-size: 15px;
            line-height: 1.45;
            color: #1f2430;
        }

        .ts-plan ul {
            margin: 0;
            padding-left: 24px;
        }

        .ts-plan li {
            margin: 8px 0;
            color: #262b35;
            font-size: 16px;
            line-height: 1.4;
        }

        .ts-plan-price {
            text-align: center;
            margin: 20px 0 0;
            font-size: 48px;
            line-height: 1.15;
            color: #202430;
            font-weight: 400;
        }

        .ts-plan-price strong {
            font-weight: 700;
        }

        .ts-plan-price .amount {
            color: #c70d2c;
            font-weight: 700;
            display: block;
        }

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

        .service {
            background: #fff;
            border-radius: 12px;
            border: 1px solid #deebff;
            box-shadow: var(--shadow);
            padding: 18px;
            display: block;
            text-decoration: none;
            color: inherit;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .service:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(0, 46, 110, 0.16);
        }

        .service .icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #eaf2ff;
            color: var(--brand);
            display: grid;
            place-items: center;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .service h3 {
            margin: 0 0 8px;
            font-size: 18px;
        }

        .service p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .service-link {
            margin-top: 12px;
            display: inline-block;
            color: var(--brand);
            font-weight: 700;
            font-size: 13px;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid #dbe8ff;
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: none;
            background: #fff;
            text-align: left;
            padding: 16px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .25s ease;
            padding: 0 16px;
            color: var(--muted);
        }

        .faq-item.active .faq-answer {
            padding: 0 16px 16px;
            max-height: 200px;
        }

        .disclaimer {
            background: #fff;
            border: 1px solid #deebff;
            border-radius: 12px;
            padding: 16px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55;
        }

        .terms-link-wrap {
            margin-top: 14px;
        }

        .terms-link {
            color: var(--brand);
            font-weight: 700;
            text-decoration: none;
        }

        .plan-actions {
            margin-top: 14px;
            text-align: center;
        }

        .plan-actions .open-plan-popup {
            background: #2d5fa7;
            color: #fff;
            border: 1px solid #3f73bf;
            border-radius: 6px;
            padding: 10px 16px;
            font-weight: 700;
            cursor: pointer;
            font-size: 14px;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(5, 17, 40, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 14px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            width: min(520px, 100%);
            background: #fff;
            border-radius: 16px;
            border: 1px solid #cfe0ff;
            box-shadow: 0 24px 56px rgba(0, 20, 60, 0.4);
            padding: 20px;
        }

        .modal h3 {
            margin: 0;
            color: #0f2f66;
            font-size: 22px;
        }

        .modal-subtitle {
            margin: 6px 0 14px;
            color: var(--muted);
            font-size: 13px;
        }

        .field {
            margin-bottom: 12px;
        }

        .field label {
            display: block;
            margin-bottom: 6px;
            font-weight: 700;
            font-size: 13px;
        }

        .field input,
        .field textarea,
        .field select {
            width: 100%;
            border: 1px solid #c9d9f8;
            border-radius: 8px;
            padding: 10px;
            font-size: 14px;
            transition: border-color .2s ease, box-shadow .2s ease;
            background: #fff;
        }

        .field input:focus,
        .field textarea:focus,
        .field select:focus {
            outline: none;
            border-color: #6fa0ef;
            box-shadow: 0 0 0 3px rgba(79, 137, 227, 0.2);
        }

        #planAmountDisplay {
            background: #f3f7ff;
            color: #0f2f66;
            font-weight: 700;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 12px;
        }

        .btn-muted {
            background: #eef3ff;
            color: var(--brand-dark);
        }

        .modal .btn-primary {
            background: #1f5fb9;
            color: #fff;
            border: 1px solid #1f5fb9;
        }

        .modal .btn-primary:hover {
            background: #184d96;
            border-color: #184d96;
        }

        .form-message {
            margin-top: 10px;
            font-size: 13px;
            color: var(--brand-dark);
            min-height: 18px;
        }

        @media (max-width: 960px) {
            .hero-grid,
            .features,
            .ts-plans,
            .service-grid {
                grid-template-columns: 1fr;
            }

            .device-row {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .device-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .modal-overlay {
                padding: 10px;
            }

            .modal {
                padding: 16px 14px;
                border-radius: 12px;
            }

            .modal h3 {
                font-size: 20px;
            }

            .modal-subtitle {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .field {
                margin-bottom: 10px;
            }

            .modal-actions {
                flex-direction: column-reverse;
                align-items: stretch;
                margin-top: 10px;
            }

            .modal-actions .btn {
                width: 100%;
                text-align: center;
            }
        }

.disclaimer-spaced {
    margin-top: 18px;
}
