:root {
    --primary-color: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --secondary-dark: #059669;
    --accent-color: #f97316;
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --light-bg: #f9fafb;
    --dark-bg: #1e293b;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --light-text: #f1f5f9;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hidden {
    display: none !important;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--accent-light);
    opacity: 0.3;
    z-index: -1;
    border-radius: var(--border-radius-sm);
}

.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--timing-function);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 12px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.sticky-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.logo i {
    font-size: 1.8rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 100%;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-right: 10px;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #4338ca, #3b82f6);
    color: var(--light-text);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,255,255,0.05)" d="M44.5,-76.3C58,-68.1,69.3,-56.4,75.9,-42.7C82.6,-28.9,84.5,-12.9,83.1,2.5C81.7,18,77,32.9,69.2,46.4C61.3,59.9,50.2,72,36.4,77.1C22.6,82.2,6.2,80.5,-8,76.1C-22.1,71.8,-34,64.9,-44.7,55.9C-55.5,47,-65.1,36,-71,23.1C-77,10.1,-79.2,-4.7,-74.9,-17C-70.5,-29.2,-59.5,-38.9,-47.7,-47.2C-35.9,-55.6,-23.2,-62.5,-8.4,-69.2C6.4,-76,12.7,-82.4,22,-84.4C31.3,-86.4,43.6,-84,44.5,-76.3Z" transform="translate(100 100)" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,255,255,0.03)" d="M39.9,-68.1C52.5,-62,63.9,-52.1,71.7,-39.7C79.6,-27.2,83.8,-12.1,81.3,1.5C78.8,15,69.5,27.1,60.5,38.3C51.4,49.5,42.6,60,31.4,65.7C20.2,71.3,6.8,72.1,-4.7,69C-16.2,65.9,-25.8,59,-37.5,52.5C-49.2,46.1,-62.9,40,-69.8,29.5C-76.7,18.9,-76.7,3.8,-73.8,-10.2C-70.9,-24.2,-65,-37,-55.2,-44.5C-45.4,-52,-31.6,-54.2,-19.6,-60.4C-7.6,-66.6,2.6,-76.8,14.4,-79.1C26.3,-81.5,39.7,-75.9,39.9,-68.1Z" transform="translate(100 100)" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 10;
}

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-devices {
    margin-top: 3rem;
    max-width: 100%;
    position: relative;
}

.hero-devices img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.hero-devices img:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px);
}

.btn i {
    margin-right: 8px;
}

.btn.primary {
    background-color: var(--accent-color);
    color: white;
}

.btn.secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--light-text);
    backdrop-filter: blur(5px);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.step h3 {
    margin: 20px 0 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.step p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,255,255,0.03)" d="M42.7,-65.4C56.8,-60.5,70.8,-52.1,75.3,-39.7C79.8,-27.3,74.9,-10.9,73.2,5.9C71.4,22.7,72.7,40,65.2,52.3C57.8,64.7,41.5,72.1,25.5,75.3C9.5,78.5,-6.3,77.5,-19.6,72C-32.8,66.4,-43.5,56.4,-53,45.2C-62.5,34.1,-70.7,21.8,-74.6,7.3C-78.4,-7.1,-77.9,-23.8,-70.5,-36.4C-63,-49,-48.6,-57.6,-34.6,-62.4C-20.5,-67.3,-6.9,-68.4,6.4,-68.6C19.6,-68.8,28.6,-70.3,42.7,-65.4Z" transform="translate(100 100)" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    transition: var (--transition);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.stat-card .counter {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Channels Section */
.channels {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-container {
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter, .category-filter {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter:hover, .filter.active, .category-filter:hover, .category-filter.active {
    background-color: var(--primary-color);
    color: white;
}

.filter i, .category-filter i {
    margin-left: 5px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.channel-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.channel-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.channel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,255,255,0.05)" d="M45.3,-77.5C58.3,-71,68.5,-57.4,75.7,-42.8C82.9,-28.2,87.1,-12.5,86.1,2.9C85.1,18.4,79,33.5,69.8,45.9C60.6,58.3,48.4,68,34.5,73.1C20.6,78.2,5,78.5,-8.9,74.4C-22.9,70.4,-35.1,62,-44.6,51.2C-54.1,40.5,-60.9,27.5,-65.3,13.3C-69.6,-0.9,-71.5,-16.4,-67,-29.8C-62.4,-43.2,-51.5,-54.6,-38.9,-61.1C-26.3,-67.5,-12,-69,-0.5,-68.2C11.1,-67.4,32.2,-84.1,45.3,-77.5Z" transform="translate(100 100)" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
}

.channel-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 15px;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.channel-title {
    flex-grow: 1;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.channel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.channel-body {
    padding: 20px;
}

.channel-description {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.channel-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.channel-meta-item {
    display: flex;
    align-items: center;
}

.channel-meta-item i {
    margin-left: 5px;
    color: var(--primary-color);
}

.channel-actions {
    display: flex;
    gap: 10px;
}

.channel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.channel-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.channel-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.channel-btn i {
    margin-left: 8px;
    font-size: 1.1rem;
}

.channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.quote {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.testimonial-slide p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.author-info {
    text-align: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial, .next-testimonial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: var(--primary-light);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-right: 5px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

form.newsletter-form {
    display: flex;
    gap: 10px;
}

@media (max-width: 480px) {
    form.newsletter-form {
        flex-direction: column;
    }
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.newsletter-form .btn {
    padding: 10px 15px;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: var(--transition);
}

.social a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

.disclaimer {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .steps {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .sticky-header .container {
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-image {
        height: 32px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .channel-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .filter-options {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter, .category-filter {
        flex-shrink: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    .logo-image {
        height: 38px;
    }
    
    .footer-logo-image {
        height: 45px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Add new styles for the "new project" badge and other additions */

.new-project-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    font-size: 1rem;
    position: relative;
}

.new-project-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid var(--accent-color);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.hero-feature i {
    font-size: 1rem;
    color: var(--accent-light);
}

/* For the new channel badge */
.new-badge {
    background-color: var(--secondary-color);
    left: auto;
    right: 15px;
}

/* Attention Revolution Section */
.attention-revolution {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #e9ecef 100%);
}

.attention-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.attention-text {
    flex: 1;
    min-width: 300px;
}

.attention-text > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

.attention-text p:nth-child(2) {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    border-right: 3px solid var(--accent-color);
    padding-right: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: var(--border-radius);
}

.attention-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.attention-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.attention-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.attention-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.attention-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.attention-feature p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.attention-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.attention-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
}

@media (max-width: 768px) {
    .attention-content {
        flex-direction: column-reverse;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .hero-feature {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Add styles for the new elements and modifications */

.new-project-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    font-size: 1rem;
    position: relative;
}

/* ...existing CSS for new-project-badge... */

/* Coming Soon Card */
.coming-soon-card {
    border: 2px dashed var (--border-color);
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    border-color: var(--primary-color);
    background-color: white;
}

.coming-soon-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: white;
}

/* Updated testimonial styles without images */
.testimonial-author {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.author-info {
    text-align: center;
}

/* Disclaimer in footer */
.disclaimer {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Additional attention revolution paragraph */
.attention-text p:nth-child(2) {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var (--text-color);
    line-height: 1.8;
    font-style: italic;
    border-right: 3px solid var(--accent-color);
    padding-right: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: var(--border-radius);
}

/* Updated Attention Revolution Section */
.attention-revolution {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #e9ecef 100%);
}

/* Full-width intro paragraphs */
.attention-intro {
    margin-bottom: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.attention-intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.attention-intro .personal-story {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    border-right: 3px solid var(--accent-color);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
}

/* Two-column layout for features and image */
.attention-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.attention-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.attention-feature {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.attention-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.attention-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.attention-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.attention-feature p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* עדכון ל-attention-content כדי לוודא יישור אנכי מושלם */
.attention-content {
    display: flex;
    gap: 40px;
    align-items: center; /* זה אמור להיות כבר קיים */
    flex-wrap: wrap;
    min-height: 500px; /* גובה מינימלי לאזור */
}

/* עדכון של התכונות (הקופסאות בצד ימין) */
.attention-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: center; /* חשוב ביותר - מרכז את הקופסאות אנכית */
}

/* עדכון לאזור התמונה */
.attention-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center; /* מרכז את התמונה אנכית */
    min-height: 500px; /* גובה מינימלי לאזור התמונה */
}

/* עדכון ספציפי לתמונה עצמה */
.attention-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    min-height: 450px; /* גובה מינימלי לתמונה */
}

/* Newsletter section scroll positioning */
#newsletter-signup {
    scroll-margin-top: 100px; /* Ensures the section is visible below the sticky header when scrolled to */
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .attention-content {
        flex-direction: column-reverse;
    }
    
    .attention-intro {
        padding: 0 15px;
    }
}
