:root {
    --primary-color: #4f46e5;
    /* Indigo */
    --primary-dark: #4338ca;
    --accent-color: #f59e0b;
    /* Amber/Gold */
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    /* Bigger logo */
    border-radius: 12px;
    /* Rounded corners matching theme */
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.menu-btn {
    border: none;
    background: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--card-bg);
    z-index: 200;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 24px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 16px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.sidebar-links a.active,
.sidebar-links a:hover {
    background-color: #eef2ff;
    color: var(--primary-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 24px 0;
}

.hero-banner {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Add a subtle pattern overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

/* Features */
.features {
    padding: 16px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for mobile too if possible, or scroll */
    gap: 12px;
}

/* On very small screens, maybe scroll? or 2x2. The image shows horizontal scrolling or small cards. 
The image shows 4 items in a row. */
@media (max-width: 480px) {
    .features-grid {
        gap: 8px;
    }
}

.feature-card {
    background: var(--card-bg);
    padding: 16px 8px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon-box {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    background: #e0e7ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-card p {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Promo Banner */
.promo-banner {
    padding: 16px 0;
}

.promo-card {
    background: linear-gradient(to right, #0f172a, #334155);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.promo-text h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--accent-color);
}

.promo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-decoration {
    font-size: 4rem;
    opacity: 0.1;
    position: absolute;
    left: -10px;
    bottom: -10px;
    transform: rotate(15deg);
}

/* Games Grid */
.games {
    padding: 24px 0 80px;
    /* pb for footer space */
}

.section-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    padding-right: 16px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 4px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns based on image */
    gap: 16px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .sidebar {
        width: 250px;
    }

    .hero-banner {
        min-height: 160px;
        padding: 16px;
        border-radius: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .feature-card {
        padding: 10px 4px;
        border-radius: 12px;
    }

    .feature-card .icon-box {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .feature-card h3 {
        font-size: 0.75rem;
    }

    .feature-card p {
        display: none;
        /* Hide description on mobile to save space/match style */
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .game-card {
        margin-bottom: 8px;
    }

    .game-image-wrapper {
        border-radius: 14px;
        margin-bottom: 6px;
    }

    .game-title {
        font-size: 0.75rem;
        /* Smaller font for 3-column layout */
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .promo-card {
        padding: 16px;
    }

    .promo-text h2 {
        font-size: 1.2rem;
    }

    .promo-decoration {
        font-size: 3rem;
    }
}

.game-card {
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.game-card:hover {
    transform: scale(1.03);
}

.game-image-wrapper {
    position: relative;
    border-radius: 20px;
    /* Highly rounded as in image */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 8px;
    aspect-ratio: 1/1;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: white;
    padding: 24px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 16px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-modal:hover {
    background: #e5e7eb;
    color: var(--text-primary);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-game-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.modal-title h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-title p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.packages-section label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
    /* Space for scrollbar */
}

/* Custom Scrollbar */
.packages-grid::-webkit-scrollbar {
    width: 6px;
}

.packages-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.packages-grid::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.package-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.package-card:hover {
    border-color: var(--primary-color);
    background: #eef2ff;
}

.package-card.selected {
    border-color: var(--primary-color);
    background: #eef2ff;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.pkg-amount {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.pkg-price {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.checkout-btn {
    width: 100%;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.2s;
}

.checkout-btn:hover {
    filter: brightness(1.1);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.about-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro {
    background: var(--bg-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--primary-color);
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.about-intro p {
    margin-bottom: 12px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Steps */
.about-steps h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.step-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 20px 10px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 12px;
}

.step-card p {
    font-weight: 700;
    font-size: 0.95rem;
}

.steps-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-pill {
    background: #e0e7ff;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Info Grid (Features & Security) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.info-card ul li i {
    color: #10b981;
    /* Green for checkmarks */
}

.security-list ul li i {
    color: var(--primary-color);
}

/* Goals */
.about-goals {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-goals h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.about-goals p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.goals-subtitle {
    font-size: 1rem !important;
    opacity: 0.7 !important;
    margin-bottom: 16px !important;
}

.goals-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.goal-tag {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .about-section {
        padding: 40px 0;
    }

    .info-card {
        padding: 20px;
    }

    .about-goals {
        padding: 24px;
    }

    .goal-tag {
        font-size: 1rem;
        padding: 6px 16px;
    }
}

/* Professional About Section Redesign */
.about-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 5% 10%, rgba(79, 70, 229, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 95% 90%, rgba(245, 158, 11, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.about-content.simplified {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Intro Card */
.simple-intro {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.simple-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 0 0 4px 4px;
}

.simple-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.simple-intro strong {
    color: var(--primary-color);
    font-weight: 800;
}

/* Steps Flow */
.simple-steps-container {
    text-align: center;
}

.simple-steps-container h3 {
    margin-bottom: 32px;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.simple-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

/* Step Cards */
.simple-step {
    background: white;
    padding: 24px 20px;
    border-radius: 18px;
    width: 160px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.simple-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.simple-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.3);
}

.simple-step h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.step-separator {
    color: #cbd5e1;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Grid */
.simple-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.s-feature-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.s-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.s-feature-card i {
    font-size: 1.6rem;
    background: -webkit-linear-gradient(45deg, var(--accent-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.s-feature-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0 40px;
    }

    .simple-intro {
        padding: 24px 16px;
    }

    .simple-steps {
        flex-direction: column;
        gap: 16px;
    }

    .step-separator {
        transform: rotate(90deg);
        margin: -8px 0;
        opacity: 0.5;
    }

    .simple-step {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        padding: 16px;
        justify-content: flex-start;
        gap: 20px;
    }

    .simple-step .step-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .simple-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .s-feature-card {
        padding: 16px 12px;
    }

    .s-feature-card i {
        font-size: 1.4rem;
    }

    .s-feature-card span {
        font-size: 0.8rem;
    }
}