* {
    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: 1650px;
    margin: 0 auto;
}

/* TOP ALERT */
.top-alert {
    background: #e9e9eb;
    position: relative;
    padding: 36px 70px 30px;
    text-align: center;
}

.top-alert__text {
    max-width: 1300px;
    margin: 0 auto;
    font-size: 18px;
    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: 28px;
    cursor: pointer;
    color: #222;
}

/* HEADER */
.site-header {
    background: #e9e9eb;
    padding: 30px 0 34px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo img {
    max-width: 290px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 52px;
}

.main-nav a {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #ef5a49;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 42px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 800;
    color: #111827;
}

.icon-circle,
.icon-user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ✅ بدل background-image بـ img */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    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: 78px;
    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: 92px;
    height: 92px;
    border-radius: 50%;
    background: #ef0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    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: 58px;
    }
}

@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: 42px;
        line-height: 1.2;
    }

    .chat-btn {
        width: 72px;
        height: 72px;
        font-size: 34px;
    }
}
.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 {
    background: #000;
    padding: 50px 0;
}

.devices-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.device {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.device img {
    width: 50px;
    height: auto;
}

.pricing-section {
    background: #2c2c2c;
    padding: 100px 0;
    color: #fff;
}

.pricing-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 70px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.second-row {
    margin-top: 60px;
}

.pricing-card {
    text-align: center;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    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;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-box {
    flex: 1;
    min-width: 250px;
}

.payment-icons img {
    width: 50px;
    margin-right: 10px;
    margin-top: 15px;
}

.payment-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* 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: 58px;
    line-height: 1.15;
    font-weight: 900;
    color: #34324b;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.features-heading p {
    font-size: 22px;
    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: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 26px;
}

.feature-card h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #34324b;
    margin-bottom: 18px;
}

.feature-card p {
    font-size: 20px;
    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: 40px;
    align-items: end;
}

.step-card {
    text-align: center;
}

.step-card img {
    width: 230px;
    height: 230px;
    object-fit: contain;
    margin-bottom: 28px;
}

.step-card h3 {
    font-size: 34px;
    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: 40px;
    }

    .features-heading h2 {
        font-size: 30px;
    }

    .features-heading p {
        font-size: 17px;
        line-height: 1.7;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 17px;
        line-height: 1.7;
    }

    .step-card img {
        width: 180px;
        height: 180px;
    }

    .step-card h3 {
        font-size: 26px;
    }
}

.content-section {
    background: #f3f3f3;
    padding: 100px 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: 42px;
    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: 58px;
    line-height: 1.12;
    font-weight: 900;
    color: #34324b;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.faq-header p {
    font-size: 22px;
    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: 24px;
    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: 34px;
    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: 19px;
    }

    .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: 28px;
    }

    .faq-content {
        font-size: 16px;
        line-height: 1.8;
    }
}

.about-section {
    background: #f3f3f3;
    padding: 100px 0;
}

.about-content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-content p {
    font-size: 20px;
    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: 22px;
    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: 19px;
        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: 22px;
    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: 19px;
        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: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.terms-content p {
    font-size: 22px;
    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: 19px;
        line-height: 1.85;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 70px 0 60px;
    }

    .terms-content h2 {
        font-size: 24px;
        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: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.privacy-content h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
    color: #151b26;
    margin: 34px 0 18px;
}

.privacy-content p,
.privacy-content li {
    font-size: 22px;
    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: 19px;
        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: 24px;
        margin: 28px 0 14px;
    }

    .privacy-content h3 {
        font-size: 20px;
        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: 22px;
    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: 22px;
    font-weight: 700;
    color: #173b63;
    text-decoration: none;
}

.affiliate-content h2 {
    font-size: 34px;
    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: 19px;
        line-height: 1.8;
    }

    .affiliate-content h2 {
        font-size: 29px;
    }

    .affiliate-join-link {
        font-size: 20px;
    }
}

@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: 24px;
        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: 42px;
    font-weight: 800;
    color: #151b26;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 22px;
    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: 24px;
    font-weight: 700;
    color: #173b63;
    margin-bottom: 8px;
}

.contact-box p {
    font-size: 20px;
    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: 20px;
    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: 20px;
    }

    .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: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #151b26;
    margin: 42px 0 22px;
}

.install-guide-content p,
.install-guide-content li {
    font-size: 22px;
    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: 19px;
        line-height: 1.85;
    }
}

@media (max-width: 768px) {
    .install-guide-section {
        padding: 70px 0 60px;
    }

    .install-guide-content h2 {
        font-size: 24px;
        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: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.support-header p {
    font-size: 20px;
    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: 34px;
}

/* TEXT */
.support-card h3 {
    font-size: 24px;
    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;
    }
}