/* ==========================================
   Web Hosting Hero — Fast, Secure & Reliable
   Light Theme | Blue Accents | 5px Radius
========================================== */

.hosting-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eef2ff 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* -------- Hero Content (centered) -------- */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

/* ==========================================
   Hero Tag / Badge
========================================== */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #4a7aff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.hero-tag i {
    font-size: 11px;
    color: #4a7aff;
}

.hero-tag:hover {
    border-color: rgba(56, 98, 255, 0.30);
}

/* ==========================================
   Heading
========================================== */

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #0b0f1a;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Paragraph
========================================== */

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 28px;
}

/* ==========================================
   Buttons
========================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(56, 98, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(56, 98, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: #4a7aff;
    border: 2px solid #4a7aff;
}

.btn-outline:hover {
    background: rgba(56, 98, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 98, 255, 0.10);
}

/* ==========================================
   Hero Features / Trust Badges
========================================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-features .feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.hero-features .feature i {
    font-size: 16px;
    color: #4a7aff;
    width: 20px;
    text-align: center;
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 600px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 26px;
        font-size: 14px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-hero {
        padding: 40px 0 30px;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .hero-tag {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .hero-tag i {
        font-size: 10px;
    }

    .hero-buttons {
        gap: 10px;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .hero-features {
        gap: 14px 20px;
        padding-top: 16px;
    }

    .hero-features .feature {
        font-size: 12px;
    }

    .hero-features .feature i {
        font-size: 14px;
        width: 18px;
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-hero {
        padding: 30px 0 20px;
        margin-top: 15px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn-primary,
    .btn-outline {
        padding: 8px 18px;
        font-size: 13px;
        max-width: 220px;
    }

    .hero-features {
        gap: 10px 14px;
    }

    .hero-features .feature {
        font-size: 11px;
    }

    .hero-features .feature i {
        font-size: 12px;
        width: 16px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .btn-primary,
    .btn-outline {
        transition: none;
    }

    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
}

/* ==========================================
   Why Choose Our Web Hosting
   Light Theme | Blue Accents | 5px Radius
========================================== */

.why-hosting {
    position: relative;
    padding: 60px 0 60px;
    background: #ffffff; /* white to contrast with the hero gradient */
    overflow: hidden;
}

/* -------- Container -------- */

.why-hosting .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title (reused from other sections)
========================================== */

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

.section-title span {
    display: inline-block;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Hosting Grid — 3 columns on desktop
========================================== */

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================
   Individual Card
========================================== */

.hosting-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    padding: 24px 20px 20px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hosting-card:hover {
    background: #ffffff;
    border-color: rgba(56, 98, 255, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* -------- Icon -------- */

.hosting-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    border-radius: 5px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(56, 98, 255, 0.20);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.hosting-card .icon i {
    font-size: 20px;
    color: #ffffff;
}

.hosting-card:hover .icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(56, 98, 255, 0.30);
}

/* -------- Content -------- */

.hosting-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0f1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.hosting-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .why-hosting {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title span {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hosting-grid {
        grid-template-columns: 1fr; /* single column on mobile */
        gap: 14px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hosting-card {
        padding: 18px 16px 16px 16px;
        flex-direction: row;        /* horizontal layout */
        align-items: center;
        gap: 16px;
    }

    .hosting-card .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
    }

    .hosting-card .icon i {
        font-size: 16px;
    }

    .hosting-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .hosting-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .hosting-card .card-text {
        display: flex;
        flex-direction: column;
    }

    .hosting-card:hover .icon {
        transform: scale(1.05) rotate(-2deg);
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .why-hosting {
        padding: 30px 0 30px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .hosting-card {
        padding: 14px 12px 12px 12px;
        gap: 12px;
    }

    .hosting-card .icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .hosting-card .icon i {
        font-size: 14px;
    }

    .hosting-card h3 {
        font-size: 13px;
    }

    .hosting-card p {
        font-size: 11px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .hosting-card {
        transition: none;
    }

    .hosting-card:hover {
        transform: none;
    }

    .hosting-card:hover .icon {
        transform: none;
    }
}

/* ==========================================
   Hosting Plans — Pricing Section
   Light Theme | Blue Accents | 5px Radius
========================================== */

.hosting-plans {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eef2ff 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-plans .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title
========================================== */

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

.section-title span {
    display: inline-block;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Plans Grid (3 columns)
========================================== */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ==========================================
   Individual Plan Card
========================================== */

.plan-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(56, 98, 255, 0.06);
    border-color: rgba(56, 98, 255, 0.10);
}

/* -------- Featured Card (Most Popular) -------- */

.plan-card.featured {
    border: 2px solid #4a7aff;
    box-shadow: 0 8px 30px rgba(56, 98, 255, 0.10);
    background: #ffffff;
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 48px rgba(56, 98, 255, 0.15);
}

/* -------- Popular Badge (floating corner) -------- */

.popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(56, 98, 255, 0.25);
}

/* ==========================================
   Plan Header
========================================== */

.plan-header {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.plan-card.featured .plan-header h3 {
    color: #4a7aff;
}

/* ==========================================
   Price Styles
========================================== */

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 0 0 8px 0;
    flex-wrap: wrap;
}

.price .currency {
    font-size: 18px;
    font-weight: 600;
    color: #0b0f1a;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #0b0f1a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price .duration {
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    margin-left: 2px;
}

.plan-card.featured .price .currency,
.plan-card.featured .price .amount {
    color: #4a7aff;
}

.plan-card.featured .price .duration {
    color: #94a3b8;
}

/* -------- Plan Description -------- */

.plan-header p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   Plan Features List
========================================== */

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.plan-features li i {
    color: #4a7aff;
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li i {
    color: #4a7aff;
}

/* ==========================================
   Plan Button
========================================== */

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    width: 100%;
    background: rgba(56, 98, 255, 0.06);
    color: #4a7aff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-align: center;
}

.plan-btn:hover {
    background: rgba(56, 98, 255, 0.10);
    transform: translateY(-2px);
}

.plan-card.featured .plan-btn {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(56, 98, 255, 0.25);
}

.plan-card.featured .plan-btn:hover {
    box-shadow: 0 10px 36px rgba(56, 98, 255, 0.35);
    transform: translateY(-2px);
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Featured card spans full width for prominence */
    .plan-card.featured {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-4px);
    }

    .popular {
        right: 20px;
        top: -10px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-plans {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title span {
        font-size: 10px;
        padding: 4px 10px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card {
        padding: 22px 18px 18px 18px;
    }

    .plan-card.featured {
        grid-column: auto;
        transform: scale(1);
        max-width: 100%;
    }

    .plan-card.featured:hover {
        transform: translateY(-4px);
    }

    .plan-header h3 {
        font-size: 18px;
    }

    .price .currency {
        font-size: 16px;
    }

    .price .amount {
        font-size: 30px;
    }

    .price .duration {
        font-size: 13px;
    }

    .plan-header p {
        font-size: 13px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .plan-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .popular {
        right: 14px;
        top: -10px;
        font-size: 9px;
        padding: 3px 12px;
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-plans {
        padding: 30px 0 30px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .plan-card {
        padding: 18px 14px 14px 14px;
    }

    .plan-header h3 {
        font-size: 16px;
    }

    .price .currency {
        font-size: 14px;
    }

    .price .amount {
        font-size: 26px;
    }

    .price .duration {
        font-size: 12px;
    }

    .plan-header p {
        font-size: 12px;
    }

    .plan-features {
        gap: 8px;
    }

    .plan-features li {
        font-size: 12px;
    }

    .plan-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .popular {
        right: 10px;
        top: -8px;
        font-size: 8px;
        padding: 2px 10px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .plan-card {
        transition: none;
    }

    .plan-card:hover {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: none;
    }

    .plan-btn {
        transition: none;
    }

    .plan-btn:hover {
        transform: none;
    }
}

/* ==========================================
   What's Included — Hosting Features
   Light Theme | Blue Accents | 5px Radius
========================================== */

.hosting-included {
    position: relative;
    padding: 60px 0 60px;
    background: #ffffff; /* white to contrast with the gradient sections */
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-included .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title (reused from other sections)
========================================== */

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

.section-title span {
    display: inline-block;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Included Grid — 4 columns on desktop
========================================== */

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

/* ==========================================
   Individual Card
========================================== */

.included-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    padding: 24px 20px 20px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.included-card:hover {
    background: #ffffff;
    border-color: rgba(56, 98, 255, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* -------- Icon -------- */

.included-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    border-radius: 5px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(56, 98, 255, 0.20);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.included-card .icon i {
    font-size: 20px;
    color: #ffffff;
}

.included-card:hover .icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(56, 98, 255, 0.30);
}

/* -------- Content -------- */

.included-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0f1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.included-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-included {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title span {
        font-size: 10px;
        padding: 4px 10px;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 14px;
    }

    .included-card {
        padding: 18px 16px 16px 16px;
        /* keep vertical layout (icon on top) */
    }

    .included-card .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .included-card .icon i {
        font-size: 16px;
    }

    .included-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .included-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .included-card:hover .icon {
        transform: scale(1.05) rotate(-2deg);
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-included {
        padding: 30px 0 30px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr; /* still 2 columns */
        gap: 10px;
    }

    .included-card {
        padding: 14px 12px 12px 12px;
    }

    .included-card .icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
    }

    .included-card .icon i {
        font-size: 14px;
    }

    .included-card h3 {
        font-size: 13px;
    }

    .included-card p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* -------- Very small screens (<= 360px) — stack to 1 column -------- */

@media (max-width: 360px) {
    .included-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }

    .included-card {
        flex-direction: row; /* horizontal layout for very small */
        align-items: center;
        gap: 14px;
        padding: 14px 14px;
    }

    .included-card .icon {
        margin-bottom: 0;
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .included-card .icon i {
        font-size: 16px;
    }

    .included-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .included-card p {
        font-size: 12px;
    }

    .included-card .card-text {
        display: flex;
        flex-direction: column;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .included-card {
        transition: none;
    }

    .included-card:hover {
        transform: none;
    }

    .included-card:hover .icon {
        transform: none;
    }
}