:root {
    --primary: #7D3BED;
    --primary-dark: #6a1ee3;
    --primary-light: #9264F3;
    --secondary: #7C3AED;
    --text-dark: #1D1A24;
    --text-gray: #4A4455;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    --bg-light: #FBFCFC;
    --success: #10B981;
    --warning: #FACC15;
    --border-color: #E5E7EB;
    --shadow-sm: 0px 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.highlight { color: var(--primary); }

/* Buttons */
.btn-primary {
    background: var(--primary); color: white; border: none;
    padding: 12px 32px; border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif; font-weight: 600; font-size: 16px;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: transparent; border: 2px solid var(--primary); color: var(--primary);
    padding: 12px 32px; border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif; font-weight: 600; font-size: 16px;
    cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { background: var(--primary); color: white; }
.btn-outline {
    background: transparent; border: 2px solid var(--primary); color: var(--primary);
    padding: 14px 24px; border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif; font-weight: 600; font-size: 16px;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-large { padding: 14px 36px; font-size: 18px; }
.btn-white {
    background: white; color: var(--primary); border: none;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 18px;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 12px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(254, 247, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 1000; padding: 8px 0;
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; }
.logo-image {
    width: clamp(60px, 8vw, 100px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.logo-icon {
    width: 32px; height: 32px; background: var(--primary);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; color: white; font-size: 16px;
}
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a {
    text-decoration: none; color: var(--text-gray);
    font-weight: 600; transition: var(--transition); font-size: 14px;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { border-bottom: 2px solid var(--primary); padding-bottom: 4px; }
.nav-buttons { display: flex; gap: 12px; }
.btn-login {
    background: transparent; border: none; color: var(--primary);
    font-weight: 600; cursor: pointer; padding: 8px 16px;
    font-family: 'Tajawal', sans-serif; font-size: 16px; text-decoration: none;
}
.btn-login:hover { background: rgba(125, 59, 237, 0.06); border-radius: var(--radius-sm); }
.nav-buttons a.btn-primary { padding: 8px 18px; font-size: 15px; text-decoration: none; }
.language-switch {
    display: flex; gap: 4px; background: var(--bg-light);
    border-radius: var(--radius-full); padding: 4px;
}
.lang-btn {
    padding: 6px 12px; border: none; background: transparent;
    font-family: 'Tajawal', sans-serif; font-weight: 600;
    cursor: pointer; border-radius: var(--radius-full); transition: var(--transition);
}
.lang-btn.active { background: var(--primary); color: white; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 25px; height: 3px; background: var(--text-dark); transition: var(--transition); }

/* Navbar Simple (login/signup pages) */
.navbar-simple {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(254, 247, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 1000; padding: 16px 0;
}
.navbar-simple .nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px; text-align: center;
    background: linear-gradient(135deg, rgba(125, 59, 237, 0.05) 0%, rgba(125, 59, 237, 0.02) 100%);
}
.page-header h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.page-header .subtitle { font-size: 18px; color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* Billing Toggle */
.billing-section { text-align: center; margin-bottom: 48px; }
.billing-toggle {
    display: inline-flex; align-items: center; gap: 16px;
    background: linear-gradient(180deg, var(--bg-white), var(--bg-light));
    padding: 6px 14px; border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(125,59,237,0.12);
}
.toggle-label { font-weight: 600; cursor: pointer; color: var(--text-gray); transition: var(--transition); font-size: 15px; }
.toggle-label.active { color: var(--primary); }
.save-badge {
    background: #DCFCE7; color: #059669;
    font-size: 11px; padding: 2px 8px; border-radius: var(--radius-full); margin-right: 8px;
}
.toggle-switch {
    width: 56px; height: 30px; background: rgba(125,59,237,0.12);
    border-radius: var(--radius-full); position: relative; padding: 2px;
    box-shadow: none; border: 1px solid rgba(125,59,237,0.08); cursor: pointer;
}
.toggle-slider {
    width: 26px; height: 26px; background: #FFFFFF; border-radius: 50%;
    position: absolute; top: 2px; right: 30px;
    box-shadow: var(--shadow-sm); transition: all 0.22s ease;
}
.toggle-switch.yearly { background: var(--primary); }
.toggle-switch.yearly .toggle-slider { right: 2px; }

/* Pricing Cards */
.pricing-cards {
    display: flex; justify-content: center; align-items: stretch;
    gap: 32px; margin: 60px 0; flex-wrap: wrap;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-xl); padding: 32px;
    width: 340px; transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5); position: relative;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured {
    background: var(--bg-white);
    box-shadow: 0px 4px 20px rgba(100, 15, 212, 0.3);
    transform: scale(1.02); border: none;
}
.featured-badge {
    position: absolute; top: -12px; right: 20px; background: var(--primary);
    color: white; padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 800; letter-spacing: 1px;
}
.pricing-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.pricing-card .plan-desc { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pricing-card .price { margin-bottom: 24px; }
.pricing-card .price-amount { font-size: 48px; font-weight: 900; color: var(--text-dark); }
.pricing-card .price-currency { font-size: 16px; font-weight: 700; color: var(--text-light); }
.pricing-card .price-period { font-size: 14px; color: var(--text-light); }
.pricing-card .price-custom { font-size: 18px; font-weight: 700; color: var(--primary); }
.pricing-features { list-style: none; margin: 32px 0; }
.pricing-features li {
    padding: 10px 0; display: flex; align-items: center;
    gap: 12px; font-size: 15px; color: #334155; font-weight: 500;
}
.pricing-features li i { width: 20px; }
.pricing-features li i.fa-check { color: #059669; }
.pricing-features li i.fa-times { color: #94A3B8; }
.pricing-features li.disabled { opacity: 0.5; text-decoration: line-through; }
.pricing-card .btn-card { width: 100%; padding: 16px; font-size: 18px; font-weight: 700; }
.pricing-card .btn-outline-card {
    background: transparent; border: 2px solid var(--primary); color: var(--primary);
    width: 100%; padding: 16px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 18px; cursor: pointer; transition: var(--transition);
}
.pricing-card .btn-outline-card:hover { background: var(--primary); color: white; }

/* Feature Boxes */
.feature-boxes { display: flex; gap: 32px; margin: 80px 0; flex-wrap: wrap; }
.feature-box {
    flex: 1; background: var(--bg-white); border-radius: var(--radius-xl);
    padding: 40px 32px; text-align: center;
    border: 1px solid var(--border-color); transition: var(--transition);
}
.feature-box.gradient { background: linear-gradient(135deg, #630ED4 0%, #7C3AED 100%); color: white; }
.feature-box.gradient .feature-icon { background: rgba(255, 255, 255, 0.1); }
.feature-box.gradient h4 { color: white; }
.feature-box.gradient p { color: rgba(255, 255, 255, 0.8); }
.feature-icon {
    width: 64px; height: 64px; background: rgba(99, 14, 212, 0.05);
    border-radius: var(--radius-lg); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 24px;
}
.feature-icon i { font-size: 28px; color: var(--primary); }
.feature-box.gradient .feature-icon i { color: white; }
.feature-box h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.feature-box p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--bg-white); padding: 60px 0 80px; }
.faq-section h2 { text-align: center; font-size: 36px; font-weight: 700; margin-bottom: 48px; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); border: 1px solid #F1F5F9;
    border-radius: var(--radius-xl); margin-bottom: 20px;
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 32px; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: rgba(125, 59, 237, 0.02); }
.faq-question h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.faq-icon { font-size: 20px; color: #94A3B8; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 32px;
    border-top: 1px solid transparent;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 32px 24px; border-top-color: #F8FAFC; }
.faq-answer p { font-size: 16px; color: #475569; line-height: 1.7; }

/* Footer Shared */
.footer {
    background: #F9FAFB; border-top: 1px solid #E5E7EB; padding: 60px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 32px; height: 32px; font-size: 14px; }
.footer-logo span { font-size: 18px; font-weight: 700; color: var(--primary); }
.footer-col p { color: var(--text-gray); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 36px; height: 36px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray); transition: var(--transition); text-decoration: none;
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-col h4 { font-size: 18px; margin-bottom: 16px; color: var(--primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { text-decoration: none; color: var(--text-gray); transition: var(--transition); font-size: 14px; }
.footer-col a:hover { color: var(--primary); }

/* Footer Simple (login/signup) */
.footer-simple { background: white; border-top: 1px solid #E5E7EB; padding: 32px 40px; }
.footer-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo-section { display: flex; flex-direction: column; gap: 8px; }
.logo-text-large { font-size: 28px; font-weight: 700; color: #7E3CED; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-copyright { font-size: 16px; color: rgba(76, 67, 83, 0.7); }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; font-weight: 700; color: rgba(76, 67, 83, 0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #7E3CED; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 40px; height: 40px; background: #EDEEEF; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #4C4353; text-decoration: none; transition: all 0.3s ease; border: 1px solid #7E3CED;
}
.footer-social a:hover { background: #7E3CED; color: white; transform: translateY(-2px); }

/* ========= HERO ========= */
.hero {
    padding: 130px 24px 80px; max-width: 1280px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(125, 59, 237, 0.05) 0%, rgba(125, 59, 237, 0.02) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.3; margin-bottom: 24px; color: var(--text-dark); }
.hero-description { font-size: 18px; color: var(--text-gray); margin-bottom: 32px; line-height: 1.7; max-width: 90%; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-features { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-features span { display: flex; align-items: center; gap: 8px; color: var(--text-gray); font-size: 14px; }
.hero-features i { color: var(--primary); font-size: 16px; }
.hero-trial {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16, 185, 129, 0.1); padding: 8px 16px;
    border-radius: var(--radius-full); color: var(--success); font-size: 14px;
}
.hero-visual { position: relative; min-height: 500px; }
.visual-wrapper {
    position: absolute; inset: 0; display: flex;
    justify-content: center; align-items: center;
    animation: heroFloat 8s ease-in-out infinite;
}
.main-mockup {
    width: 100%; max-width: 600px; height: 400px; background: #ffffff;
    border-radius: 24px; border: 1px solid rgba(125, 59, 237, 0.08);
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.15); position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    animation: mockupDrift 10s ease-in-out infinite;
}
.main-mockup img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 24px; }
.floating-card {
    position: absolute; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px); border-radius: 12px; padding: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); z-index: 3;
    animation: cardFloat 6s ease-in-out infinite; will-change: transform;
}
.chart-card { top: -20px; right: -20px; min-width: 160px; animation-delay: 0.2s; }
.en .chart-card { right: auto; left: -20px; }
.card-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 12px; }
.card-value { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.progress-bar { background: #E8DFEE; border-radius: var(--radius-full); height: 4px; overflow: hidden; }
.progress-bar span { display: block; width: 75%; height: 100%; background: var(--primary); border-radius: var(--radius-full); }
.order-card { bottom: -20px; left: -20px; display: flex; align-items: center; gap: 12px; animation-delay: 0.8s; }
.en .order-card { left: auto; right: -20px; }
.order-card i { font-size: 32px; color: var(--success); background: rgba(16, 185, 129, 0.1); padding: 8px; border-radius: var(--radius-full); }
.order-info { display: flex; flex-direction: column; gap: 2px; }
.order-info strong { font-size: 14px; color: var(--text-dark); }
.order-info span { font-size: 12px; color: var(--text-light); }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes mockupDrift { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.01); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-10px) translateX(2px); } }

/* Stats */
.stats-bar { background: var(--bg-white); box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); padding: 40px 0; }
.stats-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-value { font-size: 36px; font-weight: 800; color: var(--text-dark); }
.stat-label { font-size: 16px; color: var(--text-gray); margin-top: 8px; font-weight: 600; }
.stars { margin-top: 8px; color: var(--warning); font-size: 14px; }

/* All Tools */
.all-tools { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.all-tools .tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tools-visual { position: relative; min-height: 500px; width: 100%; isolation: isolate; }
.orbit-layer { position: absolute; inset: 0; animation: orbit-spin 26s linear infinite; }
.circle-decor {
    position: absolute; width: 520px; height: 520px; border: 1px dashed var(--primary);
    border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.55;
}
.img-large, .img-medium, .img-small {
    position: absolute; border-radius: 50%; border: 4px solid white;
    overflow: hidden; box-shadow: 0 14px 28px rgba(124,58,237,0.18);
    background: #ffffff; transform-origin: center;
}
.orbit-fix { width: 100%; height: 100%; animation: orbit-counter-spin 26s linear infinite; }
.img-large img, .orbit-fix img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-large { width: 330px; height: 330px; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.img-medium { width: 180px; height: 180px; top: -10%; left: 52%; transform: translateX(-50%); z-index: 4; }
.img-small { width: 200px; height: 200px; top: 62%; left: 1%; z-index: 2; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit-counter-spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.tools-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.tools-list div { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 500; }
.tools-list i { font-size: 28px; color: var(--primary); }
.tools-content h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.tools-content p { font-size: 18px; color: var(--text-gray); margin-bottom: 32px; }

/* Feature Sections */
.feature-section { background: var(--bg-white); }
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feature-image { grid-column: 1; }
.feature-text { grid-column: 2; }
.feature-content.reverse .feature-image { grid-column: 2; }
.feature-content.reverse .feature-text { grid-column: 1; }
.feature-text h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.feature-text p { font-size: 18px; color: var(--text-gray); margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.checklist div { display: flex; align-items: center; gap: 12px; font-size: 18px; }
.checklist i { color: var(--success); font-size: 20px; }
.feature-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }

/* Pricing Section (Index) */
.pricing-section { background: var(--bg-gray); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-header h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.pricing-header p { font-size: 18px; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-grid .pricing-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--border-color); }
.pricing-grid .pricing-card.featured { border: 2px solid var(--primary); box-shadow: 0px 4px 20px rgba(100, 15, 212, 0.3); transform: scale(1.02); }
.pricing-grid .price { margin-bottom: 24px; }
.pricing-grid .price .amount { font-size: 36px; font-weight: 800; color: var(--text-dark); }
.pricing-grid .price .currency { font-size: 16px; }
.pricing-grid .price .period { font-size: 14px; color: var(--text-light); }
.pricing-grid .custom-price { font-size: 18px; font-weight: 600; color: var(--primary); }
.pricing-grid .pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-grid .pricing-features li { padding: 8px 0; display: flex; align-items: center; gap: 12px; }
.pricing-grid .pricing-features li i.fa-check { color: var(--success); }
.pricing-grid .pricing-features li i.fa-times { color: var(--text-light); }
.pricing-grid .pricing-features li.disabled { opacity: 0.4; }

/* Templates Slider */
.templates-slider-section { background: var(--bg-white); overflow: hidden; }
.slider-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.slider-title h2 { font-size: 32px; font-weight: 700; }
.slider-title p { color: var(--text-light); }
.slider-nav { display: flex; gap: 12px; }
.slider-prev, .slider-next { width: 40px; height: 40px; border: 1px solid var(--border-color); background: white; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.slider-prev:hover, .slider-next:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slider-container { padding: 0 24px; }
.template-swiper { overflow: visible; }
.templates-slider-section .swiper-slide { height: auto; display: flex; }
.templates-slider-section .template-card {
    background: white; border-radius: var(--radius-md);
    border: 1px solid var(--border-color); overflow: hidden;
    transition: var(--transition); height: 100%; display: flex; flex-direction: column;
}
.templates-slider-section .template-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.templates-slider-section .template-card.featured-template { border: 2px solid var(--primary); position: relative; }
.templates-slider-section .template-image { position: relative; height: 250px; overflow: hidden; }
.templates-slider-section .template-image img { width: 100%; height: 250px; object-fit: cover; display: block; }
.template-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
}
.template-badge.free { background: #DCFCE7; color: #005B3D; }
.template-badge.premium { background: var(--primary); color: white; }
.template-badge.featured-badge { background: var(--primary); color: white; }
.template-price-badge { position: absolute; bottom: 12px; right: 12px; background: white; padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; color: var(--primary); }
.templates-slider-section .template-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.templates-slider-section .template-info h4 { font-size: 18px; margin-bottom: 8px; }
.templates-slider-section .template-info p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.templates-slider-section .template-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border-color); margin-top: auto; }
.preview-link { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.template-price { font-weight: 700; color: var(--primary); }

/* Steps */
.steps-section { background: rgba(249, 250, 251, 0.5); position: relative; }
.steps-section h2 { text-align: center; font-size: 36px; margin-bottom: 16px; }
.steps-subtitle { text-align: center; color: var(--text-gray); margin-bottom: 48px; }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-connector { position: absolute; top: 120px; left: 25%; right: 25%; height: 2px; background: var(--primary); border-top: 2px dashed var(--primary); opacity: 0.3; pointer-events: none; }
.step-card { text-align: center; background: white; border-radius: var(--radius-md); padding: 24px; position: relative; z-index: 2; }
.step-number { width: 64px; height: 64px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--primary); margin: 0 auto 16px; position: relative; box-shadow: 0px -10px 4px var(--primary); }
.step-card h3 { font-size: 20px; margin-bottom: 8px; }
.step-card p { color: var(--text-gray); margin-bottom: 24px; }
.step-image { border-radius: var(--radius-md); overflow: hidden; background: var(--bg-gray); }
.step-image img { width: 100%; height: auto; }

/* CTA Banner */
.cta-banner { background: var(--primary-light); margin: 48px 0; border-radius: var(--radius-lg); overflow: hidden; }
.cta-content { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 32px 36px; column-gap: 24px; }
.cta-text { grid-column: 1; }
.cta-button { grid-column: 1; margin-top: 20px; }
.cta-image { grid-column: 2; grid-row: 1 / span 2; }
.cta-text h3 { font-size: 24px; color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255, 255, 255, 0.9); }
.cta-image { justify-self: center; width: 100%; max-width: 360px; }
.cta-image img { width: 100%; max-width: 360px; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16)); transform: translateY(4px) scale(1.04); }

/* Integrations */
.integrations-section { background: white; text-align: center; }
.integrations-section h2 { font-size: 32px; margin-bottom: 16px; }
.integrations-section p { color: var(--text-gray); margin-bottom: 48px; }
.integrations-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.integration-item { text-align: center; }
.integration-icon { width: 64px; height: 64px; background: var(--bg-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

/* ========= ABOUT PAGE ========= */
.about-hero { padding: 140px 0 60px; text-align: center; background: var(--primary); }
.about-hero h1 { font-size: 40px; font-weight: 800; color: white; margin: 0; }
.about-content { padding: 60px 0 40px; background: white; }
.about-card { background: white; border-radius: 12px; margin-bottom: 32px; padding: 32px 40px; box-shadow: 0px 5px 12px 8px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05); transition: var(--transition); }
.about-card:hover { transform: translateY(-2px); box-shadow: 0px 8px 20px 10px rgba(0, 0, 0, 0.08); }
.about-text p { font-size: 18px; line-height: 1.8; color: #051E26; text-align: right; margin: 0; }
.testimonial-section { padding: 48px 0 80px; background: white; }
.testimonial-card { background: var(--primary); border-radius: 12px; padding: 48px; display: flex; gap: 32px; align-items: flex-start; box-shadow: var(--shadow-lg); }
.testimonial-icon { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-icon i { font-size: 40px; color: white; }
.testimonial-content { flex: 1; }
.testimonial-content h3 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 12px; }
.testimonial-text { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); margin-bottom: 24px; }
.testimonial-author { margin-bottom: 16px; }
.author-name { display: block; font-size: 16px; font-weight: 500; color: white; margin-bottom: 4px; }
.author-title { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.testimonial-rating { display: flex; gap: 4px; }
.testimonial-rating i { font-size: 18px; color: #FDE047; }

/* ========= TEMPLATES PAGE ========= */
.search-filters { margin: 40px 0 48px; }
.search-bar { margin-bottom: 24px; }
.search-input-wrapper { position: relative; width: 100%; max-width: 1024px; margin: 0 auto; }
.search-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 18px; z-index: 1; }
.search-input { width: 100%; padding: 18px 48px 18px 20px; font-size: 16px; font-family: 'Tajawal', sans-serif; border: 1px solid #CCC3D8; border-radius: 16px; background: rgba(255, 255, 255, 0.8); transition: var(--transition); box-shadow: 0px 4px 12px rgba(99, 14, 212, 0.08); }
.search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0px 4px 12px rgba(99, 14, 212, 0.15); }
.filters-row { border-top: 1px solid rgba(204, 195, 216, 0.3); padding-top: 24px; }
.filter-group { display: flex; gap: 16px; flex-wrap: wrap; }
.filter-select { display: flex; align-items: center; gap: 8px; }
.filter-select span { font-size: 12px; font-weight: 500; color: #434655; }
.select-input { padding: 10px 16px; background: white; border: 1px solid #CCC3D8; border-radius: 12px; font-family: 'Tajawal', sans-serif; font-size: 12px; font-weight: 500; color: #051E26; cursor: pointer; transition: var(--transition); min-width: 120px; }
.select-input:focus { outline: none; border-color: var(--primary); }
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 48px 0; }
.template-card { background: white; border: 1px solid #CCC3D8; border-radius: 12px; overflow: hidden; transition: var(--transition); }
.template-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.template-card.featured { border: 2px solid var(--primary); position: relative; }
.template-image { position: relative; height: 260px; overflow: hidden; background: #EDEEEF; }
.template-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.template-card:hover .template-image img { transform: scale(1.05); }
.template-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(99, 14, 212, 0.2); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.template-card:hover .template-overlay { opacity: 1; }
.preview-btn { background: white; border: none; padding: 10px 24px; border-radius: 8px; font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 14px; color: var(--primary); cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-md); }
.preview-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.template-details { padding: 20px; }
.template-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.template-header h3 { font-size: 20px; font-weight: 600; color: #051E26; }
.template-description { font-size: 14px; color: #434655; line-height: 1.6; margin-bottom: 20px; min-height: 70px; }
.template-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #CCC3D8; }
.btn-details { background: transparent; border: 1px solid var(--primary); padding: 8px 20px; border-radius: 8px; font-family: 'Tajawal', sans-serif; font-weight: 500; font-size: 14px; color: var(--primary); cursor: pointer; transition: var(--transition); }
.btn-details:hover { background: var(--primary); color: white; }
.btn-details-primary { background: var(--primary); color: white; }
.btn-details-primary:hover { background: var(--primary-dark); }
.price-label { font-size: 11px; font-weight: 500; color: #434655; display: block; }
.price-value { font-size: 16px; font-weight: 700; color: var(--primary); }
.cta-custom { margin: 60px 0 80px; background: var(--primary); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.cta-custom::before { content: ''; position: absolute; width: 192px; height: 192px; right: -48px; top: -48px; background: rgba(255, 255, 255, 0.1); filter: blur(32px); border-radius: 50%; pointer-events: none; }
.cta-custom::after { content: ''; position: absolute; width: 192px; height: 192px; left: -48px; bottom: -48px; background: rgba(255, 255, 255, 0.1); filter: blur(32px); border-radius: 50%; pointer-events: none; }
.cta-custom-content { text-align: center; padding: 48px 32px; position: relative; z-index: 2; }
.cta-custom-content h2 { font-size: 32px; font-weight: 700; color: #EDE0FF; margin-bottom: 12px; }
.cta-custom-content p { font-size: 18px; color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; }
.btn-white-custom { background: white; border: none; padding: 14px 32px; border-radius: 8px; font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 16px; color: var(--primary); cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); }
.btn-white-custom:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ========= LOGIN / SIGNUP ========= */
.login-section, .signup-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 24px 60px; background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 100%); }
.login-container, .signup-container { display: flex; max-width: 1200px; width: 100%; background: white; border-radius: 24px; overflow: hidden; box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1); }
.login-visual, .signup-visual { flex: 1; background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #630ED4 100%); padding: 48px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.login-visual::before, .signup-visual::before { content: ''; position: absolute; top: 40px; right: 40px; width: 100px; height: 100px; background: rgba(255, 255, 255, 0.1); border-radius: 24px; opacity: 0.3; }
.login-visual::after, .signup-visual::after { content: ''; position: absolute; bottom: 80px; left: 40px; width: 150px; height: 90px; background: rgba(255, 255, 255, 0.08); border-radius: 16px; }
.login-form-container, .signup-form-container { flex: 1; padding: 48px 56px; background: rgba(255, 255, 255, 0.95); }
.form-card { max-width: 100%; }
.form-header { margin-bottom: 32px; }
.form-header h1 { font-size: 36px; font-weight: 800; color: #7E3CED; margin-bottom: 8px; }
.form-header p { font-size: 16px; color: #4C4353; }
.login-form, .signup-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { width: 100%; }
.form-group label { font-size: 14px; font-weight: 700; color: #4C4353; }
.form-group input { padding: 16px; border: 1px solid #7E3CED; border-radius: 10px; font-size: 16px; font-family: 'Tajawal', sans-serif; transition: all 0.3s ease; background: #FEFEFE; }
.form-group input:focus { outline: none; border-color: #630ED4; box-shadow: 0 0 0 3px rgba(99, 14, 212, 0.1); }
.input-wrapper { position: relative; }
.input-wrapper input { width: 100%; padding: 16px 48px 16px 16px; border: 1px solid #7E3CED; border-radius: 10px; font-size: 16px; font-family: 'Tajawal', sans-serif; transition: all 0.3s ease; background: #FEFEFE; }
.input-wrapper input:focus { outline: none; border-color: #630ED4; box-shadow: 0 0 0 3px rgba(99, 14, 212, 0.1); }
.input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #64748B; font-size: 18px; }
.password-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.forgot-link { font-size: 14px; font-weight: 700; color: #6100A4; text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }
.password-input-wrapper { position: relative; }
.password-input-wrapper input { width: 100%; padding-left: 48px; }
.toggle-password { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #64748B; font-size: 18px; }
.toggle-password:hover { color: #7E3CED; }
.terms-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.checkbox-group, .remember-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.checkbox-group { color: #454652; font-size: 14px; line-height: 1.6; }
.checkbox-group a { color: #1A237E; font-weight: 700; text-decoration: none; }
.checkbox-group a:hover { text-decoration: underline; }
.remember-group label { font-size: 14px; color: #454652; cursor: pointer; }
.checkbox-wrapper { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.checkbox-wrapper input { position: absolute; opacity: 0; cursor: pointer; width: 100%; height: 100%; z-index: 1; }
.checkmark { position: absolute; top: 0; left: 0; width: 20px; height: 20px; background: white; border: 1px solid #7E3CED; border-radius: 8px; transition: all 0.2s ease; }
.checkbox-wrapper input:checked ~ .checkmark { background: #7E3CED; }
.checkbox-wrapper input:checked ~ .checkmark::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 10px; }
.terms-group { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
.terms-text { font-size: 14px; color: #454652; }
.terms-text a { color: #1A237E; text-decoration: none; font-weight: 700; }
.terms-text a:hover { text-decoration: underline; }
.btn-submit { background: #7D3BED; color: white; border: none; padding: 16px; border-radius: 8px; font-size: 18px; font-weight: 700; font-family: 'Tajawal', sans-serif; cursor: pointer; transition: all 0.3s ease; margin-top: 8px; box-shadow: 0px 10px 25px -5px rgba(125, 59, 237, 0.4); }
.btn-submit:hover { background: #630ED4; transform: translateY(-2px); }
.btn-google { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; border-radius: 8px; border: 1px solid #E5E7EB; background: white; color: #1F2937; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-google:hover { border-color: #7E3CED; color: #7E3CED; transform: translateY(-2px); box-shadow: 0px 10px 25px -12px rgba(125, 59, 237, 0.35); }
.signup-link { text-align: center; padding-top: 8px; }
.signup-link span { font-size: 16px; color: #4C4353; }
.signup-link a { font-size: 16px; font-weight: 700; color: #6100A4; text-decoration: none; }
.signup-link a:hover { text-decoration: underline; }
.login-link { text-align: center; padding-top: 16px; }
.login-link span { font-size: 16px; color: #4C4353; }
.login-link a { font-size: 16px; font-weight: 700; color: #6100A4; text-decoration: none; }
.login-link a:hover { text-decoration: underline; }
.divider { display: flex; align-items: center; gap: 16px; margin: 8px 0; }
.divider .line { flex: 1; height: 1px; background: #E5E7EB; }
.divider .or-text { font-size: 14px; color: #64748B; white-space: nowrap; }
.visual-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.visual-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.visual-logo { display: flex; align-items: center; gap: 12px; }
.visual-logo span { font-size: 24px; font-weight: 700; color: white; font-family: 'Cairo', sans-serif; }
.visual-badge { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.visual-badge i { font-size: 20px; color: white; }
.live-badge { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(6px); padding: 6px 16px; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, 0.2); }
.live-badge .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.live-badge span { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.9); }
.visual-content h2 { font-size: 48px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; max-width: 400px; }
.visual-content p { font-size: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 48px; max-width: 400px; }
.visual-stats { display: flex; gap: 20px; }
.stat-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 20px; flex: 1; text-align: center; }
.stat-number { font-size: 24px; font-weight: 800; color: white; margin-bottom: 4px; }
.header-section { scroll-margin-top: 60px; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
    .hero-grid, .hero-container { grid-template-columns: 1fr; }
    .all-tools .tools-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .steps-container { grid-template-columns: 1fr; gap: 24px; }
    .steps-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .templates-grid { grid-template-columns: repeat(2, 1fr); }
    .signup-container, .login-container { flex-direction: column; }
    .signup-visual, .login-visual { padding: 40px; }
    .visual-content h2 { font-size: 36px; }
    .signup-form-container, .login-form-container { padding: 40px 32px; }
    .cta-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .cta-image { max-width: 380px; }
    .cta-image img { transform: none; max-width: 100%; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 400px; }
    .pricing-card.featured { transform: scale(1); }
    .feature-boxes { flex-direction: column; }
    .circle-decor { width: 460px; height: 460px; }
    .img-large { width: 300px; height: 300px; top: 48%; }
    .tools-list { grid-template-columns: 1fr 1fr; gap: 18px; }
    .tools-content h2 { font-size: 34px; }
    .cta-banner-small { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .feature-content { gap: 28px; }
    section { padding: 60px 0; }
    .hero { padding: 100px 16px 60px; }
    .hero-content h1 { font-size: clamp(26px, 7vw, 36px); }
    .hero-description { max-width: 100%; font-size: 16px; }
    .hero-features span { font-size: 13px; }
    .hero-trial { font-size: 13px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-value { font-size: 28px; }
    .stat-label { font-size: 13px; }
    .feature-text h2 { font-size: clamp(24px, 6vw, 32px); }
    .feature-text p { font-size: 16px; }
    .checklist div { font-size: 15px; }
    .tools-content h2 { font-size: clamp(22px, 6vw, 30px); }
    .tools-list div { font-size: 16px; }
    .tools-list i { font-size: 22px; }
    .pricing-header h2 { font-size: clamp(24px, 6vw, 32px); }
    .steps-section h2 { font-size: clamp(24px, 6vw, 32px); }
    .step-card { padding: 20px 16px; }
    .faq-section h2 { font-size: clamp(24px, 6vw, 32px); }
    .faq-question { padding: 18px 20px; }
    .faq-question h4 { font-size: 16px; }
    .hamburger { display: flex; }
    .nav-menu { position: fixed; top: 56px; left: -100%; width: 100%; height: calc(100vh - 56px); background: white; flex-direction: column; padding: 40px; transition: var(--transition); z-index: 999; }
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; align-items: center; }
    .nav-buttons { flex-direction: column; }
    .hero-description { max-width: 100%; }
    .hero-visual:hover .main-mockup { transform: none; box-shadow: none; }
    .hero-visual:hover .floating-card { transform: none; }

    .tools-list { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-features { flex-direction: column; gap: 12px; }
    .page-header h1 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .social-links { justify-content: center; }
    .chart-card { right: 0; }
    .order-card { left: 0; }
    .en .chart-card { left: 0; right: auto; }
    .en .order-card { right: 0; left: auto; }
    .floating-card, .main-mockup, .visual-wrapper { animation: none; }
    .templates-grid { grid-template-columns: 1fr; }
    .filter-group { flex-direction: column; }
    .filter-select { justify-content: space-between; }
    .select-input { flex: 1; }
    .template-footer { flex-direction: column; gap: 16px; }
    .btn-details { width: 100%; }
    .cta-custom-content h2 { font-size: 24px; }
    .cta-custom-content p { font-size: 16px; }
    .signup-section, .login-section { padding: 80px 16px 40px; }
    .form-row { flex-direction: column; gap: 16px; }
    .visual-content h2 { font-size: 28px; }
    .visual-content p { font-size: 16px; }
    .visual-stats { flex-direction: column; }
    .signup-form-container, .login-form-container { padding: 32px 24px; }
    .form-header h1 { font-size: 28px; }
    .password-header, .terms-row { flex-direction: column; align-items: flex-start; }
    .checkbox-group, .remember-group { align-items: flex-start; }
    .footer-links { flex-direction: column; gap: 12px; }
    .tools-visual { order: 2; min-height: 360px; }
    .tools-content { order: 1; text-align: center; padding: 0 12px; }
    .img-large { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .img-medium, .img-small { display: none; }
    .orbit-layer { animation: none; }
    .circle-decor { width: 320px; height: 320px; }
    .tools-list { grid-template-columns: 1fr; gap: 12px; justify-items: center; }
    .tools-list div { justify-content: center; }
    .tools-content h2 { font-size: 28px; }
    .about-hero { padding: 120px 0 40px; }
    .about-hero h1 { font-size: 32px; }
    .about-card { padding: 24px 20px; }
    .about-text p { font-size: 16px; }
    .testimonial-card { flex-direction: column; padding: 32px 24px; }
    .testimonial-icon { width: 60px; height: 60px; }
    .testimonial-icon i { font-size: 28px; }
    .testimonial-content h3 { font-size: 20px; }
    .testimonial-text { font-size: 14px; }
    .slider-header { flex-direction: column; align-items: flex-start; }
    .integrations-grid { gap: 24px; }
    .logo-image { width: clamp(60px, 10vw, 100px); }
}
@media (max-width: 640px) {
    .billing-toggle { display: inline-flex; gap: 8px; padding: 6px 10px; }
    .toggle-switch { width: 44px; height: 22px; }
    .toggle-slider { width: 18px; height: 18px; top: 2px; right: 24px; }
    .toggle-switch.yearly .toggle-slider { right: 2px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .feature-content { gap: 16px; }
    .logo-image { width: clamp(50px, 14vw, 80px); }
    .hero { padding: 48px 16px 64px; }
    .hero-visual { min-height: 340px; }
    .main-mockup { height: 300px; }
    .stats-container { grid-template-columns: 1fr; }
    .pricing-card { padding: 24px; }
    .billing-toggle { flex-wrap: wrap; justify-content: center; }
    .cta-banner-small { padding: 32px 24px; }
    .cta-banner-small h3 { font-size: 24px; }
    .cta-content { padding: 32px 20px; }
    .cta-image { max-width: 300px; }
    .about-card { padding: 20px 16px; }
    .about-text p { font-size: 14px; }
    .testimonial-card { padding: 24px 16px; }
    .img-large { width: 160px; height: 160px; }
    .circle-decor { width: 240px; height: 240px; }
    .all-tools { padding: 48px 12px; }
    .tools-content h2 { font-size: 20px; }
    .tools-list div { font-size: 16px; }
    .template-header h3 { font-size: 18px; }
    .template-description { font-size: 13px; min-height: auto; }
    .visual-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .signup-form-container, .login-form-container { padding: 24px 16px; }
    .terms-text, .checkbox-group, .remember-group, .forgot-link, .signup-link span, .signup-link a { font-size: 12px; }
    .footer-simple { padding: 24px 20px; }
    .logo-text-large { font-size: 22px; }
}
