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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111;
}

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

.container {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
}

/* TOP ALERT */
.top-alert {
    background: #e9e9eb;
    position: relative;
    padding: 24px 60px 22px;
    text-align: center;
}

.top-alert__text {
    max-width: 1300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
}

.top-alert__text span {
    color: #ef5a49;
}

.top-alert__close {
    position: absolute;
    right: 22px;
    top: 32px;
    border: none;
    background: transparent;
    font-size: 21px;
    cursor: pointer;
    color: #222;
}

/* HEADER */
.site-header {
    background: #e9e9eb;
    padding: 22px 0 24px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #ef5a49;
}

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

.header-action {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

.icon-circle,
.icon-user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ✅ بدل background-image بـ img */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 245, 245, 0.48);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 760px;
    padding-left: 20px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.12;
    font-weight: 900;
    color: #111111;
    letter-spacing: -2px;
}

.hero-text h1 span {
    background: linear-gradient(90deg, #23c4f4, #a768f5, #ff4f7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CHAT BUTTON */
.chat-btn {
    position: absolute;
    right: 24px;
    bottom: 28px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ef0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    z-index: 3;
}

/* FOOTER */
.site-footer {
    background: #111827;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}

.site-footer p {
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav,
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .top-alert {
        padding: 25px 45px 20px;
    }

    .top-alert__text {
        font-size: 14px;
    }

    .site-header {
        padding: 25px 0;
    }

    .site-logo img {
        max-width: 220px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a,
    .header-action {
        font-size: 15px;
    }

    .hero-section {
        min-height: 560px;
    }

    .hero-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .chat-btn {
        width: 72px;
        height: 72px;
        font-size: 30px;
    }
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
}

/* BUTTON 1 (gradient) */
.hero-btn--gradient {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #2ec7ff, #a855f7, #ff4d6d);
    border: none;
    display: inline-block;
}

/* BUTTON 2 (outline) */
.hero-btn--outline {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    border: 2px solid #111;
    background: transparent;
    display: inline-block;
}

/* hover (optional but nice) */
.hero-btn--gradient:hover {
    opacity: 0.9;
}

.hero-btn--outline:hover {
    background: #111;
    color: #fff;
}

/* DEVICES SECTION */
.devices-section{
    width:100%;
    overflow:hidden;
    background:#000;
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* TRACK */
.devices-container{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollDevices 30s linear infinite;
}

/* ITEM */
.device{
    flex:0 0 auto;
    margin-right:120px;
}

/* IMAGE */
.device img{
    height:75px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* ANIMATION */
@keyframes scrollDevices{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){

    .device{
        margin-right:60px;
    }

    .device img{
        height:48px;
    }

}

.pricing-section {
    background: #2c2c2c;
    padding: 80px 0;
    color: #fff;
}

.pricing-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 70px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.second-row {
    margin-top: 60px;
}

.pricing-card {
    text-align: center;
}

.pricing-card h3 {
    font-size: 17px;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #2ec7ff, #a855f7, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.pricing-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 40px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
}

.pricing-btn:hover {
    background: #fff;
    color: #000;
}

/* PAYMENT */
.payment-section {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;
    flex-wrap: wrap;
}

.payment-box {
    flex: 1;
    min-width: 260px;
}

.payment-box h4 {
    font-size: 26px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 18px;
}

.payment-box p {
    font-size: 22px;
    line-height: 1.35;
    color: #fff;
    margin: 0;
}

.payment-icons img {
    width: 170px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 18px;
}

.payment-box .icon {
    font-size: 58px;
    line-height: 1;
    color: #fff;
    margin-bottom: 22px;
}

.payment-box .ssl-icon {
    font-size: 58px;
    font-weight: 400;
}

/* MOBILE */
@media (max-width: 768px) {
    .payment-section {
        margin-top: 55px;
        gap: 35px;
    }

    .payment-box {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .payment-box h4 {
        font-size: 23px;
    }

    .payment-box p {
        font-size: 19px;
    }

    .payment-icons img {
        width: 150px;
    }

    .payment-box .icon,
    .payment-box .ssl-icon {
        font-size: 48px;
    }
}

/* FEATURES SECTION */
.features-section {
    background: #f3f3f3;
    padding: 90px 0 70px;
}

.features-heading {
    text-align: center;
    max-width: 1500px;
    margin: 0 auto 65px;
}

.features-heading h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    color: #34324b;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.features-heading p {
    font-size: 19px;
    line-height: 1.8;
    color: #777789;
    max-width: 1600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px 35px;
}

.feature-card {
    text-align: center;
}

.feature-card img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 26px;
}

.feature-card h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: #34324b;
    margin-bottom: 18px;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #777789;
    max-width: 360px;
    margin: 0 auto;
}

/* STEPS SECTION */
.steps-section {
    background: #ececef;
    padding: 70px 0 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: end;
}

.step-card {
    text-align: center;
}

.step-card img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    margin-bottom: 28px;
}

.step-card h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    color: #1f1f2e;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-heading h2 {
        font-size: 44px;
    }

    .features-heading p,
    .feature-card p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 70px 0 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .features-heading h2 {
        font-size: 30px;
    }

    .features-heading p {
        font-size: 17px;
        line-height: 1.7;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .feature-card p {
        font-size: 17px;
        line-height: 1.7;
    }

    .step-card img {
        width: 180px;
        height: 180px;
    }

    .step-card h3 {
        font-size: 23px;
    }
}

.content-section {
    background: #f3f3f3;
    padding: 80px 0;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
}

.content-text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    max-width: 600px;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.faq-section {
    background: #f3f3f3;
    padding: 80px 0 90px;
}

.faq-header {
    text-align: center;
    max-width: 1320px;
    margin: 0 auto 60px;
}

.faq-header h2 {
    font-size: 46px;
    line-height: 1.12;
    font-weight: 900;
    color: #34324b;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.faq-header p {
    font-size: 19px;
    line-height: 1.75;
    color: #7a7a86;
    max-width: 1380px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #d9d9d9;
    padding: 0;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    position: relative;
    cursor: pointer;
    padding: 18px 42px 18px 0;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 700;
    color: #24324a;
    transition: color 0.25s ease;
    letter-spacing: -0.3px;
}

.faq-item label::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    line-height: 1;
    color: #24324a;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    padding-bottom: 0;
    color: #7a7a86;
    font-size: 18px;
    line-height: 1.95;
    max-width: 95%;
}

.faq-content p {
    margin: 0 0 10px;
}

.faq-item input:checked + label {
    color: #14b5ef;
}

.faq-item input:checked + label::after {
    transform: translateY(-50%) rotate(90deg);
    color: #14b5ef;
}

.faq-item input:checked ~ .faq-content {
    max-height: 520px;
    padding-bottom: 18px;
}

/* tablet */
@media (max-width: 1200px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-header h2 {
        font-size: 44px;
    }

    .faq-header p {
        font-size: 17px;
    }

    .faq-item label {
        font-size: 21px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0 60px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 17px;
        line-height: 1.7;
    }

    .faq-item label {
        font-size: 18px;
        line-height: 1.2;
        padding: 16px 34px 16px 0;
    }

    .faq-item label::after {
        font-size: 21px;
    }

    .faq-content {
        font-size: 16px;
        line-height: 1.8;
    }
}

.about-section {
    background: #f3f3f3;
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5f7a;
    margin-bottom: 30px;
}

.dmca-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.dmca-content {
    max-width: 1420px;
    margin: 0 auto;
    color: #536b8d;
}

.dmca-content p,
.dmca-content li {
    font-size: 19px;
    line-height: 1.95;
    font-weight: 400;
}

.dmca-content p {
    margin: 0 0 34px;
}

.dmca-intro {
    margin-top: 22px;
}

.dmca-list {
    margin: 0 0 34px 0;
    padding-left: 28px;
}

.dmca-list li {
    margin-bottom: 34px;
}

@media (max-width: 1200px) {
    .dmca-content {
        max-width: 100%;
    }

    .dmca-content p,
    .dmca-content li {
        font-size: 17px;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {
    .dmca-section {
        padding: 70px 0 60px;
    }

    .dmca-content p,
    .dmca-content li {
        font-size: 17px;
        line-height: 1.8;
    }

    .dmca-list {
        padding-left: 22px;
    }

    .dmca-list li {
        margin-bottom: 24px;
    }
}

.refund-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.refund-content {
    max-width: 1420px;
    margin: 0 auto;
    color: #536b8d;
}

.refund-content p {
    font-size: 19px;
    line-height: 1.95;
    font-weight: 400;
    margin: 0 0 44px;
}

.refund-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .refund-content {
        max-width: 100%;
    }

    .refund-content p {
        font-size: 17px;
        line-height: 1.85;
        margin-bottom: 34px;
    }
}

@media (max-width: 768px) {
    .refund-section {
        padding: 70px 0 60px;
    }

    .refund-content p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 26px;
    }
}

.terms-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.terms-content {
    max-width: 1420px;
    margin: 0 auto;
    color: #536b8d;
}

.terms-content h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.terms-content p {
    font-size: 19px;
    line-height: 1.95;
    font-weight: 400;
    margin: 0 0 34px;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .terms-content {
        max-width: 100%;
    }

    .terms-content h2 {
        font-size: 29px;
        margin: 34px 0 18px;
    }

    .terms-content p {
        font-size: 17px;
        line-height: 1.85;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 70px 0 60px;
    }

    .terms-content h2 {
        font-size: 21px;
        margin: 28px 0 14px;
    }

    .terms-content p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 22px;
    }
}

.privacy-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.privacy-content {
    max-width: 1420px;
    margin: 0 auto;
    color: #536b8d;
}

.privacy-content h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.privacy-content h3 {
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
    color: #151b26;
    margin: 34px 0 18px;
}

.privacy-content p,
.privacy-content li {
    font-size: 19px;
    line-height: 1.95;
    font-weight: 400;
}

.privacy-content p {
    margin: 0 0 34px;
}

.privacy-list {
    margin: 0 0 34px 0;
    padding-left: 28px;
}

.privacy-list li {
    margin-bottom: 12px;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .privacy-content {
        max-width: 100%;
    }

    .privacy-content h2 {
        font-size: 29px;
        margin: 34px 0 18px;
    }

    .privacy-content h3 {
        font-size: 23px;
        margin: 28px 0 14px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 17px;
        line-height: 1.85;
    }

    .privacy-content p {
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 70px 0 60px;
    }

    .privacy-content h2 {
        font-size: 21px;
        margin: 28px 0 14px;
    }

    .privacy-content h3 {
        font-size: 17px;
        margin: 22px 0 12px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 17px;
        line-height: 1.8;
    }

    .privacy-content p {
        margin-bottom: 22px;
    }

    .privacy-list {
        padding-left: 22px;
    }
}

.affiliate-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.affiliate-content {
    max-width: 1500px;
    margin: 0 auto;
    color: #1c2433;
}

.affiliate-content p,
.affiliate-content li {
    font-size: 19px;
    line-height: 1.9;
    font-weight: 400;
}

.affiliate-content p {
    margin: 0 0 26px;
}

.affiliate-join {
    text-align: center;
    margin: 22px 0 18px;
}

.affiliate-join-link {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    color: #173b63;
    text-decoration: none;
}

.affiliate-content h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #173b63;
    margin: 18px 0 22px;
}

.affiliate-list {
    margin: 0 0 24px 0;
    padding-left: 32px;
}

.affiliate-list li {
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .affiliate-content {
        max-width: 100%;
    }

    .affiliate-content p,
    .affiliate-content li {
        font-size: 17px;
        line-height: 1.8;
    }

    .affiliate-content h2 {
        font-size: 29px;
    }

    .affiliate-join-link {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .affiliate-section {
        padding: 70px 0 60px;
    }

    .affiliate-content p,
    .affiliate-content li {
        font-size: 17px;
        line-height: 1.75;
    }

    .affiliate-content h2 {
        font-size: 21px;
        margin: 16px 0 16px;
    }

    .affiliate-join-link {
        font-size: 18px;
    }

    .affiliate-list {
        padding-left: 24px;
    }
}

.contact-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #151b26;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 19px;
    color: #536b8d;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-box {
    margin-bottom: 30px;
}

.contact-box h3 {
    font-size: 21px;
    font-weight: 700;
    color: #173b63;
    margin-bottom: 8px;
}

.contact-box p {
    font-size: 17px;
    color: #536b8d;
}

/* FORM */

.contact-form {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 18px;
    border-radius: 6px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #173b63;
}

.contact-btn {
    width: 100%;
    padding: 16px;
    background: #173b63;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-btn:hover {
    background: #0f2c4a;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .contact-content h1 {
        font-size: 32px;
    }

    .contact-intro {
        font-size: 18px;
    }

    .contact-box h3 {
        font-size: 17px;
    }

    .contact-box p {
        font-size: 18px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }
}

.install-guide-section {
    background: #f3f3f3;
    padding: 95px 0 90px;
}

.install-guide-content {
    max-width: 1420px;
    margin: 0 auto;
    color: #536b8d;
}

.install-guide-content h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.install-guide-content p,
.install-guide-content li {
    font-size: 19px;
    line-height: 1.95;
    font-weight: 400;
}

.install-guide-content p {
    margin: 0 0 34px;
}

.install-guide-list {
    margin: 0 0 34px 0;
    padding-left: 28px;
}

.install-guide-list li {
    margin-bottom: 12px;
}

@media (max-width: 1200px) {
    .install-guide-content {
        max-width: 100%;
    }

    .install-guide-content h2 {
        font-size: 29px;
        margin: 34px 0 18px;
    }

    .install-guide-content p,
    .install-guide-content li {
        font-size: 17px;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {
    .install-guide-section {
        padding: 70px 0 60px;
    }

    .install-guide-content h2 {
        font-size: 21px;
        margin: 28px 0 14px;
    }

    .install-guide-content p,
    .install-guide-content li {
        font-size: 17px;
        line-height: 1.8;
    }

    .install-guide-list {
        padding-left: 22px;
    }
}

/* ===== SUPPORT PAGE PRO ===== */

.support-page {
    padding: 120px 0;
    background: linear-gradient(180deg, #020817 0%, #041126 100%);
}

.support-header {
    text-align: center;
    margin-bottom: 70px;
}

.support-header h1 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.support-header p {
    font-size: 17px;
    color: #9fb3d1;
}

/* GRID */
.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.support-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: #6aa9ff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ICON */
.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe, #ff4ecd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* TEXT */
.support-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.support-card p {
    color: #9fb3d1;
    margin-bottom: 25px;
}

/* BUTTON 🔥 */
.support-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #4facfe, #ff4ecd);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.support-btn:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .support-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FINAL CLEAN RESPONSIVE FIX - put this file as style.css
   ========================================================= */
html, body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(92%, 1450px);
}

@media (max-width: 1400px) {
    .site-logo img { max-width: 230px; }
    .main-nav { gap: 26px; }
    .main-nav a,
    .header-action { font-size: 15px; }
    .hero-section { min-height: 560px; }
    .hero-text h1 { font-size: 56px; line-height: 1.12; }
    .features-grid { gap: 45px 28px; }
    .feature-card img { width: 95px; height: 95px; }
    .feature-card h3 { font-size: 23px; }
    .feature-card p { font-size: 16px; line-height: 1.7; }
}

@media (max-width: 1100px) {
    .top-alert { padding: 18px 44px; }
    .top-alert__text { font-size: 13px; }
    .site-header { padding: 18px 0; }
    .header-container { flex-direction: column; justify-content: center; gap: 18px; }
    .main-nav,
    .header-actions { flex-wrap: wrap; justify-content: center; gap: 18px 24px; }
    .hero-section { min-height: 520px; }
    .hero-bg { object-position: 62% center; }
    .hero-text { max-width: 620px; padding-left: 0; }
    .hero-text h1 { font-size: 48px; letter-spacing: -1px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .content-row,
    .content-row.reverse { gap: 38px; }
}

@media (max-width: 768px) {
    .container { width: 90%; }
    .top-alert { padding: 14px 34px 14px 16px; }
    .top-alert__text { font-size: 11px; line-height: 1.45; }
    .top-alert__close { top: 8px; right: 10px; font-size: 20px; }

    .site-header { padding: 16px 0; }
    .site-logo img { max-width: 185px; margin: 0 auto; }
    .header-container { gap: 15px; }
    .main-nav { width: 100%; gap: 10px 16px; }
    .main-nav a,
    .header-action { font-size: 13px; }
    .header-actions { gap: 12px 18px; }
    .icon-circle,
    .icon-user { font-size: 18px; }

    .hero-section { min-height: 500px; align-items: center; }
    .hero-bg { object-position: 66% center; }
    .hero-overlay { background: rgba(255,245,245,.66); }
    .hero-text { max-width: 360px; padding: 0; }
    .hero-text h1 { font-size: 36px; line-height: 1.16; letter-spacing: -1px; }
    .hero-buttons { margin-top: 28px; gap: 12px; flex-direction: column; align-items: flex-start; }
    .hero-btn--gradient,
    .hero-btn--outline { width: 100%; max-width: 270px; padding: 14px 20px; font-size: 15px; text-align: center; }
    .chat-btn { width: 58px; height: 58px; right: 14px; bottom: 14px; font-size: 26px; }

    .devices-section { padding: 35px 0; }
    .devices-container { justify-content: center; gap: 18px; }
    .device { width: calc(50% - 10px); justify-content: center; flex-direction: column; text-align: center; font-size: 12px; }
    .device img { width: 42px; }

    .pricing-section { padding: 60px 0; }
    .pricing-title { font-size: 30px; margin-bottom: 38px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 38px; }
    .second-row { margin-top: 38px; }
    .price { font-size: 38px; }

    .features-section { padding: 55px 0 45px; }
    .features-heading { margin-bottom: 42px; }
    .features-heading h2 { font-size: 28px; line-height: 1.18; }
    .features-heading p { font-size: 15px; line-height: 1.75; }
    .features-grid { grid-template-columns: 1fr; gap: 38px; }
    .feature-card img { width: 78px; height: 78px; margin-bottom: 18px; }
    .feature-card h3 { font-size: 21px; margin-bottom: 12px; }
    .feature-card p { font-size: 15px; line-height: 1.72; max-width: 330px; }

    .steps-section { padding: 55px 0 35px; }
    .steps-grid { grid-template-columns: 1fr; gap: 35px; }
    .step-card img { width: 150px; height: 150px; }
    .step-card h3 { font-size: 22px; }

    .content-section { padding: 55px 0; }
    .content-row,
    .content-row.reverse { flex-direction: column; gap: 28px; margin-bottom: 55px; }
    .content-text h2 { font-size: 28px; }
    .content-text p { font-size: 15px; line-height: 1.75; }

    .faq-section,
    .about-section,
    .dmca-section,
    .refund-section,
    .terms-section,
    .privacy-section,
    .affiliate-section,
    .contact-section,
    .install-guide-section,
    .support-page { padding: 55px 0; }

    .faq-header h2,
    .support-header h1 { font-size: 28px; }
    .faq-header p,
    .support-header p { font-size: 15px; line-height: 1.7; }
    .faq-grid,
    .support-cards { grid-template-columns: 1fr; }
    .contact-grid { flex-direction: column; gap: 30px; }
    .contact-form { padding: 22px; }
}

@media (max-width: 420px) {
    .hero-section { min-height: 470px; }
    .hero-text { max-width: 310px; }
    .hero-text h1 { font-size: 31px; }
    .main-nav a,
    .header-action { font-size: 12px; }
    .site-logo img { max-width: 165px; }
    .device { width: 100%; }
}
/* CENTER WHATSAPP CARD */
.support-cards{
    display:flex;
    justify-content:center;
    align-items:center;
}

.support-card{
    max-width:420px;
    width:100%;
}