/* ===========================
   HOME PAGE STYLES
   =========================== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(8, 145, 178, 0.95));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L30 60M0 30L60 30" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.trust-badge i {
    font-size: 1.25rem;
    color: #FCD34D;
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(to right, #FCD34D, #FDE68A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Free Highlight */
.free-highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.free-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(252, 211, 77, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(252, 211, 77, 0); }
}

.free-highlight strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.25rem;
}

.free-highlight p {
    margin: 0;
    opacity: 0.9;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-large {
    background: white;
    color: var(--primary);
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Booking Channels */
.booking-channels {
    animation: fadeInUp 0.8s ease 1s backwards;
}

.channels-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.channels-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.channel-item i {
    font-size: 1.75rem;
}

.channel-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease 0.4s backwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.stat-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Live Indicator */
.live-indicator {
    /*background: rgba(16, 185, 129, 0.2);*/
    background: rgb(40, 49, 46, 0.2);
    border: 2px solid #10B981;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 4rem 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
    z-index: 2;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F0FDFA, #E0F2FE);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-step p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.step-features span {
    background: #F0FDFA;
    color: #047857;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.step-features i {
    color: #10B981;
}

.step-connector {
    flex: 0 0 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    align-self: center;
    margin-top: 60px;
    position: relative;
}

.step-connector::after {
    content: '➔';
    position: absolute;
    right: -10px;
    top: -12px;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.feature-card {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
    transform: translateY(-10px);
}

.feature-card.premium {
    border-color: var(--primary);
    border-width: 3px;
    background: linear-gradient(135deg, #F0FDFA, #E0F2FE);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #F59E0B;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #10B981;
    font-size: 1.125rem;
}

/* Specializations Section */
.specializations-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, #F9FAFB 100%);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialty-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
    transform: translateY(-10px);
    color: inherit;
}

.specialty-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1) rotate(5deg);
}

.specialty-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.specialty-card p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.specialty-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.specialty-card:hover .specialty-link i {
    transform: translateX(5px);
}

/* Doctors Section */
.doctors-section {
    padding: 6rem 0;
    background: white;
}

.doctor-card-home {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-card-home:hover {
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
    transform: translateY(-10px);
}

.doctor-image-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem 2rem 2rem;
    position: relative;
    text-align: center;
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 4px solid white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: #10B981;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.doctor-info-section {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-info-section h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.doctor-info-section .specialty {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.doctor-meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary);
}

.doctor-stats {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid #F3F4F6;
    border-bottom: 2px solid #F3F4F6;
    margin-bottom: 1.5rem;
}

.doctor-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6B7280;
}

.doctor-stats i {
    color: var(--primary);
}

.free-tag {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    width: 100%;
    margin-top: auto;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F0FDFA, #E0F2FE);
}

.testimonial-card-home {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card-home:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: #D1D5DB;
    font-size: 1.25rem;
}

.rating-stars i.filled {
    color: #FCD34D;
}

.testimonial-text {
    font-style: italic;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #F3F4F6;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.author-info p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* App Download Section */
.app-download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB, white);
}

.app-content .section-badge {
    background: #EFF6FF;
    color: #3B82F6;
}

.app-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.app-content p {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.app-features i {
    color: #10B981;
    font-size: 1.25rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.app-button:not(.disabled):hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

.app-button i {
    font-size: 2.5rem;
}

.app-button small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-button strong {
    display: block;
    font-size: 1.1rem;
}

.notify-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 2rem;
}

.app-mockup {
    text-align: center;
}

.app-mockup img {
    max-width: 80%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* CTA Section */
.cta-section-home {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-indicators-cta {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-indicators-cta .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicators-cta i {
    font-size: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.accordion-item {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #F0FDFA, #E0F2FE);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-button i {
    font-size: 1.25rem;
}

.accordion-body {
    padding: 1.5rem;
    color: #6B7280;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Pulse Button Animation */
.btn-pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(5, 150, 105, 0); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        width: 4px;
        height: 80px;
        margin: 0 auto;
        align-self: center;
    }
    
    .step-connector::after {
        content: '↓';
        bottom: -15px;
        top: auto;
        left: -8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .channels-list {
        justify-content: center;
    }
    
    .free-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .app-content h2 {
        font-size: 2rem;
    }
    
    .specializations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-step h4 {
        font-size: 1.25rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

.btn-outline-primary {
    color: #0892a7!important;
    border-color: #079392!important;
}