/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */

/* Font Families */
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Morabba';
    src: url('src/Morabba-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Plasma';
    src: url('src/Plasma-Square-Dots.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --primary-red: #e02424;
    --primary-red-hover: #c81e1e;
    --primary-red-light: #fdf2f2;
    --dark-charcoal: #111827;
    --text-main: #374151;
    --text-muted: #6b7280;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --accent-green: #059669;
    --accent-green-light: #ecfdf5;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(17, 24, 39, 0.08), 0 15px 30px -10px rgba(224, 36, 36, 0.03);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* offset for fixed header */
    font-size: 16px;
}

body {
    font-family: 'Morabba', Tahoma, sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(224, 36, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 36, 36, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-charcoal);
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
    background-color: var(--primary-red-light);
}

.btn-phone:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-admin {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.btn-admin:hover {
    background-color: #e5e7eb;
    transform: translateY(-2px);
}

.mobile-only { display: none; }

.nav-link-admin {
    color: var(--primary-red) !important;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-charcoal);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 10% 20%, rgba(253, 242, 242, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(253, 242, 242, 0.3) 0%, transparent 60%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: #f3f4f6;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    gap: 8px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 36, 36, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(224, 36, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 36, 36, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-highlight {
    font-family: 'Plasma', sans-serif;
    font-size: 5rem;
    font-weight: normal;
    color: var(--primary-red);
    line-height: 1.1;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}



.hero-desc {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 580px;
}

.hero-img-wrapper {
    position: absolute;
     transition: var(--transition-slow);
}

.hero-img-wrapper img {
    border-radius: inherit;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-img-1 {
    width: 350px;
	left:30%;
    top: 0;
    z-index: 2;
    transform: rotate(4deg);
    animation: float1 6s ease-in-out infinite;
}

.hero-img-2 {
    width: 450px;
    right: 30%;
    bottom: 0;
    z-index: 1;
    transform: rotate(-6deg);
    animation: float2 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(-15px) rotate(6deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(12px) rotate(-4deg); }
}

.hero-img-wrapper:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg);
}

/* Downward Arrow Button */
.hero-scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid rgba(229, 231, 235, 0.8);
    z-index: 5;
}

.hero-scroll-btn:hover {
    transform: translateY(5px);
    box-shadow: var(--shadow-xl);
    background-color: var(--primary-red-light);
    border-color: rgba(224, 36, 36, 0.2);
}

.hero-scroll-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(243, 244, 246, 0.8);
    transition: var(--transition-normal);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(224, 36, 36, 0.1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background-color: var(--primary-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-red);
    transform: scale(1.05) rotate(5deg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Screenshots Showcase */
.screenshots-wrapper {
    margin-bottom: 90px;
    text-align: center;
}

.screenshots-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 40px;
}

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

.screenshot-item {
    overflow: hidden;
    transition: var(--transition-normal);
    aspect-ratio: 9 / 19;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-red-light);
}

/* Twin Feature Lists (Tables) */
.checklist-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 40px;
}

.twin-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.checklist-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checklist-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-red-light);
    padding-bottom: 15px;
}

.checklist-indicator {
    width: 6px;
    height: 24px;
    background-color: var(--primary-red);
    border-radius: var(--radius-full);
}

.checklist-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-charcoal);
}

.checklist-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.checklist-li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-green-light);
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--accent-green);
}

.checklist-footer {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing {
    background-color: var(--primary-red);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-info .section-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-desc {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.pricing-features-short {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.pricing-feat-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
}

/* Pricing Card styling */
.pricing-card-wrapper {
    perspective: 1000px;
}

.pricing-card {
    background-color: var(--white);
    color: var(--dark-charcoal);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.card-ribbon {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
}

.plan-offer {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-bottom: 35px;
}

.price-box {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-original {
    font-size: 1.35rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.price-current {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-red);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   FAQ SECTION (Accordions)
   ========================================================================== */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(229, 231, 235, 0.7);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(224, 36, 36, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: rgba(224, 36, 36, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    background: transparent;
    gap: 20px;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--primary-red);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.faq-arrow svg {
    width: 10px;
    height: 10px;
    fill: var(--text-main);
    transition: var(--transition-normal);
}

.faq-item.active .faq-arrow {
    background-color: var(--primary-red);
}

.faq-item.active .faq-arrow svg {
    fill: var(--white);
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
    border-top: 1px solid transparent;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    border-top-color: #f3f4f6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    border-top: 5px solid var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 48px;
    align-self: flex-start;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    font-size: 0.95rem;
}

.footer-link-item a:hover {
    color: var(--white);
    padding-right: 5px;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
}

.footer-info-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-red);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-info-text {
    line-height: 1.6;
}

.footer-info-text a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Tablet / Smaller Desktop */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-right: auto;
        margin-left: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-images {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-img-1 {
        width: 220px;
        height: 370px;
    }
    
    .hero-img-2 {
        width: 200px;
        height: 330px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .twin-lists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .pricing-info {
        align-items: center;
        text-align: center;
    }
    
    .pricing-features-short {
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column:first-child {
        grid-column: span 2;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px 40px;
        gap: 24px;
        transition: var(--transition-slow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-actions {
        margin-right: auto;
        margin-left: 15px;
    }
    
    .btn-phone {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .btn-admin { display: none; }
    .mobile-only { display: list-item; }
    
    .navbar-actions-wrapper {
        display: flex;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .price-current {
        font-size: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-highlight {
        font-size: 3.5rem;
    }
    

    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .checklist-card {
        padding: 24px;
    }
    
    .faq-trigger {
        padding: 16px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
}
