:root {
    /* Base Colors & Variables - Default Dark Theme */
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --accent: #0ea5e9;
    --success: #10b981;
    --error: #ef4444;

    /* Theme Specific Colors */
    --bg-body: #0f172a;       /* Dark Blue/Slate */
    --bg-card: #1e293b;       /* Lighter Slate */
    --bg-glass: rgba(15, 23, 42, 0.95);
    --bg-input: rgba(15, 23, 42, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    
    --text-main: #f1f5f9;     /* Light Text */
    --text-secondary: #94a3b8; /* Gray Text */
    --text-inverse: #0f172a;  /* Dark Text for inverse elements */
    
    --header-bg: rgba(15, 23, 42, 0.95);
    --header-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    --logo-filter: none;      /* No filter needed for dark mode */
}

/* Light Theme Override */
[data-theme="light"] {
    --bg-body: #f8fafc;       /* Very Light Slate */
    --bg-card: #ffffff;       /* Pure White */
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-input: #f1f5f9;
    --border-color: rgba(0, 0, 0, 0.1);
    
    --text-main: #0f172a;     /* Dark Text */
    --text-secondary: #64748b; /* Muted Text */
    --text-inverse: #ffffff;
    
    --header-bg: rgba(255, 255, 255, 0.98);
    --header-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --logo-filter: none; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--header-shadow);
    padding: 10px 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.main-logo {
    height: 65px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: var(--logo-filter);
}

.main-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-main); 
    letter-spacing: 0.5px;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* New WhatsApp Button with Icon Support */
.btn-whatsapp {
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-whatsapp svg {
    display: block;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.1);
}

/* Support Button Styles */
.btn-support {
    background: transparent;
    border: 1px solid var(--success);
    color: var(--success);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-support:hover {
    background: var(--success);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.theme-btn, .lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.theme-btn:hover, .lang-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

/* Floating Banner */
.floating-banner {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 950;
    width: 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
    background: white; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
    overflow: hidden;
}

.floating-banner:hover {
    transform: scale(1.05);
    animation: none;
}

.floating-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.close-banner-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    z-index: 10;
    border-bottom-left-radius: 8px;
}

.close-banner-btn:hover {
    background: red;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero Section */
.hero {
    padding: 180px 0 80px; 
    text-align: center;
    background: radial-gradient(circle at top, var(--bg-card) 0%, var(--bg-body) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.main-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-decoration: none;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-main); 
}

.btn-outline:hover {
    background: var(--border-color);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-download {
    background: var(--success);
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    margin-top: 15px;
    width: 100%;
}

.btn-download:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-register {
    width: 100%;
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    animation: slideDown 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: var(--text-main);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin: 0;
}

.close-btn {
    color: var(--text-secondary);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* WhatsApp Modal Specifics */
.wa-modal-content {
    max-width: 450px;
    text-align: center;
}

.wa-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-image {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    margin: 20px 0;
    border: 5px solid white;
}

.wa-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Registration & Support Form Styles */
.registration-modal, .support-modal-content {
    max-width: 500px;
}

.support-modal-content {
    max-width: 600px;
}

.registration-form {
    padding: 30px;
}

.reg-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input, .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control {
    resize: vertical;
}

.form-group input:focus, .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.phone-input-wrapper input {
    flex: 1;
}

.error-msg {
    display: block;
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Support Modal Specific Styles */
.row-group {
    display: flex;
    gap: 15px;
}

.half {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.checkbox-group:hover {
    border-color: var(--primary);
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.user-welcome {
    background: rgba(59, 130, 246, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.highlight-name {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 5px;
}

/* Mobile App Modal Specific Styles */
.mobile-app-content {
    max-width: 600px;
}

.mobile-app-body {
    padding: 40px;
    text-align: center;
}

.app-icon-large {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.app-desc {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    text-align: right;
    margin-bottom: 30px;
    background: var(--bg-body); 
    padding: 20px;
    border-radius: 12px;
}

[dir="ltr"] .features-list {
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-main);
}

.features-list li .check {
    color: var(--success);
    margin-left: 10px;
    font-weight: bold;
    min-width: 20px;
}

[dir="ltr"] .features-list li .check {
    margin-left: 0;
    margin-right: 10px;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 30px;
}

.app-card {
    background: var(--bg-body); 
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.app-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.app-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 60px;
}

/* Notification Modal */
.notification-content {
    max-width: 500px;
    padding: 50px 40px;
    text-align: center;
}

.notification-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.notification-content h2 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.notification-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Section */
.section {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-secondary);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Cloud Highlight Section */
.cloud-highlight {
    background: linear-gradient(to right, var(--bg-card), var(--bg-body));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
}

.cloud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cloud-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cloud-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.check-icon {
    color: var(--success);
    margin-inline-end: 15px;
    font-weight: bold;
}

.cloud-icon-container {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .cloud-icon-container {
    background: rgba(0,0,0,0.03); 
}

/* Footer */
footer {
    background: #0b1120; 
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-info {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.copyright {
    color: #475569;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Social Icons (NEW) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s;
}

.fb-icon:hover { 
    background: #1877F2; 
    transform: translateY(-3px); 
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.4);
}

/* Video Section Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
    justify-content: center;
}

.video-card.manual-video {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.video-card.manual-video:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.thumb-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.video-card.manual-video:hover .thumb-container img {
    opacity: 1;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.video-card.manual-video:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s, background 0.3s;
}

.video-card.manual-video:hover .play-icon {
    transform: scale(1.1);
    background: #ff0000;
}

.video-info-static {
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.video-info-static h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}

.video-thumb-link {
    text-decoration: none;
    display: block;
}

/* ========================================= */
/* NEW STYLES: Floating Tutorial Button & Modal */
/* ========================================= */

.tutorial-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px; /* مكان الزر: يمين الشاشة */
    z-index: 1600;
    display: flex;
    flex-direction: column; /* لترتيب الأيقونة فوق النص */
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tutorial-float-container:hover {
    transform: scale(1.05);
}

.tutorial-float-btn {
    width: 60px;
    height: 60px;
    background: #ff0000; /* YouTube Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    position: relative;
    margin-bottom: 8px; /* مسافة بين الزر والنص */
}

.tutorial-float-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff0000;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* تنسيق النص ليظهر تحت الزر بوضوح */
.float-text {
    background: var(--bg-card); /* خلفية كارت حسب الثيم */
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    line-height: 1.2;
}

/* تعديلات المودال ليتناسب مع الكروت الجديدة */
.modal-large {
    max-width: 900px;
}

.tutorial-body {
    padding: 10px 0;
}

.tutorial-intro {
    background: rgba(59, 130, 246, 0.1);
    border-right: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    line-height: 1.8;
    color: var(--text-main);
}

.sec-head {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

/* استخدام نفس تنسيق الشبكة الموجود */
.videos-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* تصغير العرض قليلاً ليناسب الشاشات */
    gap: 20px;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-banner {
        width: 120px;
        top: auto;
        bottom: 20px;
        left: 10px;
    }

    /* FIX: Hero Section padding to clear stacked mobile header */
    .hero {
        padding-top: 240px; /* Increased top padding specifically for mobile */
        align-items: flex-start; /* Stop vertical centering so padding works */
    }

    .hero-title { 
        font-size: 2.5rem; 
    }
    
    .cloud-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .check-item { 
        justify-content: center; 
    }
    
    .nav-wrapper { 
        flex-direction: column; 
        gap: 15px; 
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .btn-support {
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 5px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }

    .main-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn { 
        width: 100%; 
        margin: 10px 0; 
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .phone-input-wrapper {
        flex-direction: row;
    }
    
    .country-code {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .row-group {
        flex-direction: column;
        gap: 0;
    }

    /* Tutorial Button Position Mobile */
    .tutorial-float-container {
        right: 15px;
        bottom: 15px;
    }
    
    .tutorial-float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-text {
        font-size: 0.65rem;
    }
}