/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    padding: 2rem;
}

.auth-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
}

.auth-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-item {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-search {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-search:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Remove underline from all button links */
a.btn-primary,
a.btn-secondary,
a.btn-outline,
a.btn-hero,
a.btn-large,
a.btn-block {
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: white;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-transform: lowercase;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.btn-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

/* Features Section */
.features {
    padding: 4rem 0 6rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card-blue {
    background: #e0f2fe;
}

.feature-card-green {
    background: #d1fae5;
}

.feature-card-pink {
    background: #fce7f3;
}

.feature-card-purple {
    background: #f3e8ff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-mockup {
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Mockup */
.mobile-mockup {
    width: 200px;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-header {
    height: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-notch {
    width: 100px;
    height: 20px;
    background: #1f2937;
    border-radius: 0 0 15px 15px;
}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.notif-text {
    flex: 1;
}

.notif-time {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.notif-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e7eb;
    flex-shrink: 0;
}

.mobile-button {
    width: 100%;
    padding: 0.75rem;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* Progress Mockup */
.progress-mockup {
    width: 100%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
}

.progress-percent {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 40px;
}

.progress-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* Dashboard Mockup */
.dashboard-mockup {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.dashboard-chart {
    height: 60px;
    background: #f9fafb;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, #10b981 100%);
    clip-path: polygon(0 100%, 10% 80%, 20% 70%, 30% 60%, 40% 50%, 50% 45%, 60% 40%, 70% 35%, 80% 30%, 90% 25%, 100% 20%, 100% 100%, 0 100%);
}

.dashboard-avatar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calendar Mockup */
.calendar-mockup {
    width: 100%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    background: #f9fafb;
    border-radius: 6px;
}

.calendar-day.active {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.calendar-avatar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #065f46;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.hashtag {
    color: var(--primary-color);
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: var(--bg-white);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.integration-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.integration-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.integration-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-main-card {
    flex: 1;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;
}

.testimonial-video {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.testimonial-image {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

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

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.pricing-icon-blue {
    background: #3b82f6;
}

.pricing-icon-brown {
    background: #d97706;
}

.pricing-icon-yellow {
    background: #eab308;
}

.pricing-icon-green {
    background: #10b981;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0.25rem;
}

/* CTA Form Section */
.cta-form {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.phone-input select {
    width: 100px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('assets/img/faq-bg.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-transform: lowercase;
}

.faq-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-player {
    margin-bottom: 2rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--text-dark);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-video-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-video-btn:hover {
    transform: scale(1.1);
}

.video-label {
    color: white;
    margin-top: 1rem;
    font-weight: 500;
}

.faq-stats {
    display: flex;
    gap: 3rem;
}

.faq-stat {
    text-align: center;
}

.faq-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.faq-list {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.faq-icon {
    transition: transform 0.3s;
    color: var(--text-gray);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    padding-top: 1rem;
}

/* Footer */
.footer {
    background: #f0f4f8;
    color: var(--text-dark);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.app-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-main-card {
        grid-template-columns: 1fr;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu - Hidden on desktop */
.mobile-menu-overlay,
.mobile-menu-container {
    display: none !important;
}

@media (max-width: 768px) {
    /* Hide desktop menu and buttons on mobile */
    .navbar .nav-menu:not(.mobile-menu-content .nav-menu),
    .navbar .nav-buttons {
        display: none;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        gap: 5px;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu Container */
    .mobile-menu-container {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow: hidden;
        flex-direction: column;
    }

    .mobile-menu-container.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 1.25rem 1.5rem;
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 10;
    }

    .mobile-menu-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-header h3 {
        font-size: 1.125rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        padding: 0;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
    }

    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
    }

    /* Mobile Menu Content */
    .mobile-menu-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        background: var(--bg-white);
    }

    .mobile-menu-content::-webkit-scrollbar {
        width: 4px;
    }

    .mobile-menu-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-menu-content::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 2px;
    }

    .mobile-menu-content .nav-menu {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0.5rem 0;
        width: 100%;
    }

    .mobile-menu-content .nav-menu > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .mobile-menu-content .nav-menu > li:last-child {
        border-bottom: none;
    }

    .mobile-menu-content .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.125rem 1.5rem;
        color: #1e293b;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9375rem;
        transition: all 0.2s;
        position: relative;
    }

    .mobile-menu-content .nav-menu > li > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        transition: width 0.3s ease;
    }

    .mobile-menu-content .nav-menu > li > a:hover,
    .mobile-menu-content .nav-menu > li > a:active {
        background: #f8fafc;
        color: #4f46e5;
        padding-left: 2rem;
    }

    .mobile-menu-content .nav-menu > li > a:hover::before,
    .mobile-menu-content .nav-menu > li > a:active::before {
        width: 4px;
    }

    .mobile-menu-content .dropdown-toggle::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #64748b;
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    .mobile-menu-content .nav-item.dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
        border-top-color: #4f46e5;
    }

    .mobile-menu-content .dropdown-menu {
        display: none;
        background: #f8fafc;
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-menu-content .nav-item.dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-content .dropdown-menu li {
        margin: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-content .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-content .dropdown-menu a {
        display: block;
        padding: 0.875rem 1.5rem 0.875rem 3.5rem;
        color: #475569;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 400;
        transition: all 0.2s;
        position: relative;
    }

    .mobile-menu-content .dropdown-menu a::before {
        content: '→';
        position: absolute;
        left: 1.5rem;
        color: #94a3b8;
        transition: all 0.2s;
    }

    .mobile-menu-content .dropdown-menu a:hover,
    .mobile-menu-content .dropdown-menu a:active {
        background: #f1f5f9;
        color: #4f46e5;
        padding-left: 4rem;
    }

    .mobile-menu-content .dropdown-menu a:hover::before,
    .mobile-menu-content .dropdown-menu a:active::before {
        color: #4f46e5;
        transform: translateX(4px);
    }

    /* Mobile Menu Buttons */
    .mobile-menu-buttons {
        padding: 1.5rem;
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }

    .mobile-menu-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9375rem;
        transition: all 0.2s;
        text-align: center;
        min-height: 48px;
    }

    .mobile-menu-buttons .btn-secondary {
        background: white;
        color: #1e293b;
        border: 2px solid #e2e8f0;
    }

    .mobile-menu-buttons .btn-secondary:active {
        background: #f1f5f9;
        border-color: #cbd5e1;
        transform: scale(0.98);
    }

    .mobile-menu-buttons .btn-primary {
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    .mobile-menu-buttons .btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content-centered {
        padding: 0 1rem;
    }

    .mobile-mockup,
    .progress-mockup,
    .dashboard-mockup,
    .calendar-mockup {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        flex-direction: column;
    }

    .carousel-btn {
        display: none;
    }

    .testimonial-main-card {
        grid-template-columns: 1fr;
    }


    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

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

    .hero-cta button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* FAQ Video Section - Görseldeki gibi BİREBİR */
.faq-video-section {
    padding: 6rem 0 0;
    background: #f0f4ff;
    position: relative;
    overflow: visible;
}

.faq-video-section .container {
    position: relative;
}

/* Video Player Area - Görseldeki gibi */
.faq-video-player {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 0;
    background: #e0e7ff;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.faq-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%),
        radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    filter: blur(0.5px);
}

.faq-phone-mockup {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 640px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 48px;
    padding: 24px 16px;
    box-shadow: 
        0 35px 90px rgba(0,0,0,0.5),
        inset 0 0 0 2px rgba(255,255,255,0.1);
    z-index: 2;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 38px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.06);
    position: relative;
}

.phone-app-header {
    font-weight: 700;
    font-size: 22px;
    color: #4f46e5;
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 2px solid #e5e7eb;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.phone-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-category {
    padding: 14px 18px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.phone-category:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.phone-doctors {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.phone-doctor {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.phone-doctor:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.doctor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.35);
    border: 2px solid rgba(255,255,255,0.3);
}

.doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-name {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}

.doctor-rating {
    font-size: 14px;
    color: #fbbf24;
    letter-spacing: 2px;
    font-weight: 500;
}

.phone-button {
    margin-top: auto;
    padding: 16px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.35);
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.phone-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
}

.faq-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 4rem;
    z-index: 3;
    pointer-events: none;
}

.faq-video-text {
    margin-bottom: 3.5rem;
    pointer-events: auto;
}

.faq-video-text h2 {
    font-size: 4.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.05;
    text-transform: lowercase;
    text-shadow: 0 4px 25px rgba(0,0,0,0.35);
    letter-spacing: -2px;
    max-width: 650px;
}

.faq-play-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.5rem 3rem;
    background: rgba(55, 65, 81, 0.9);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.faq-play-btn:hover {
    background: rgba(31, 41, 55, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.faq-play-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* FAQ Content Area */
.faq-content-area {
    background: white;
    padding: 5rem 4rem 6rem;
    border-radius: 32px 32px 0 0;
    margin-top: -3rem;
    position: relative;
    z-index: 4;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.faq-main-title {
    font-size: 2.875rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.faq-intro {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.faq-metrics {
    display: flex;
    gap: 4rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-metric-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.metric-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 32px;
    height: 32px;
}

.metric-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.metric-icon-yellow {
    background: #fef3c7;
    color: #f59e0b;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.faq-accordion-item.active {
    border-color: #4f46e5;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
}

.faq-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
}

.faq-accordion-question:hover {
    background: #f8fafc;
}

.faq-accordion-question span {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e3a8a;
    letter-spacing: -0.3px;
}

.faq-arrow {
    transition: transform 0.3s;
    color: #64748b;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #4f46e5;
}

.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-accordion-item.active .faq-accordion-answer {
    max-height: 500px;
}

.faq-accordion-answer p {
    padding: 0 1.75rem 1.75rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .faq-video-text h2 {
        font-size: 3.5rem;
    }
    
    .faq-phone-mockup {
        width: 260px;
        height: 520px;
        right: 5%;
    }
}

@media (max-width: 1024px) {
    .faq-video-text h2 {
        font-size: 3rem;
    }
    
    .faq-phone-mockup {
        width: 240px;
        height: 480px;
        right: 4%;
    }
    
    .faq-content-area {
        padding: 4rem 3rem;
    }
    
    .faq-main-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .faq-video-section {
        padding: 4rem 0 0;
    }
    
    .faq-video-player {
        height: 450px;
        border-radius: 24px;
    }
    
    .faq-video-overlay {
        padding: 3rem 2rem;
    }
    
    .faq-video-text h2 {
        font-size: 2.25rem;
    }
    
    .faq-play-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .faq-phone-mockup {
        display: none;
    }
    
    .phone-screen {
        display: none;
    }
    
    .faq-content-area {
        padding: 3rem 2rem;
        margin-top: -2rem;
        border-radius: 24px 24px 0 0;
    }
    
    .faq-main-title {
        font-size: 1.875rem;
    }
    
    .faq-intro {
        font-size: 1rem;
    }
    
    .faq-metrics {
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .faq-accordion-question {
        padding: 1.5rem;
    }
    
    .faq-accordion-question span {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .faq-video-player {
        height: 350px;
    }
    
    .faq-video-overlay {
        padding: 2rem 1.5rem;
    }
    
    .faq-video-text h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-play-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .faq-phone-mockup {
        display: none;
    }
    
    .phone-screen {
        display: none;
    }
    
    .faq-content-area {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-main-title {
        font-size: 1.5rem;
    }
    
    .faq-metrics {
        gap: 1.5rem;
    }
    
    .metric-icon {
        width: 56px;
        height: 56px;
    }
    
    .metric-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .metric-number {
        font-size: 1.875rem;
    }
}

