/* Drift Mango - CSS Styles */
/* Colors: Primary: #FF8C42, Secondary: #2E8B8B, Accent: #FFF8E7, Text: #2D3748 */

:root {
    --primary-color: #FF8C42;
    --primary-hover: #FF7426;
    --secondary-color: #2E8B8B;
    --secondary-hover: #267373;
    --accent-color: #FFF8E7;
    --text-color: #2D3748;
    --text-light: #718096;
    --text-white: #FFFFFF;
    --border-color: #E2E8F0;
    --background-color: #F7FAFC;
    --success-color: #48BB78;
    --warning-color: #ED8936;
    --error-color: #F56565;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.brand-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

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

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background: #E53E3E;
    color: white;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
}

.alert {
    padding: 1rem;
    margin-bottom: 0;
    border-left: 4px solid;
}

.alert-success {
    background: #F0FFF4;
    border-color: var(--success-color);
    color: #22543D;
}

.alert-danger {
    background: #FED7D7;
    border-color: var(--error-color);
    color: #742A2A;
}

.alert-warning {
    background: #FFFBEB;
    border-color: var(--warning-color);
    color: #C05621;
}

.alert-info {
    background: #EBF8FF;
    border-color: var(--secondary-color);
    color: #2C5282;
}

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

.alert-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFF5E6 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,140,66,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.hero-subtitle-dark {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.hero-phone i {
    color: var(--primary-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    font-size: 6rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
}

.sound-waves span {
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.sound-waves span:nth-child(2) { animation-delay: 0.2s; }
.sound-waves span:nth-child(3) { animation-delay: 0.4s; }
.sound-waves span:nth-child(4) { animation-delay: 0.6s; }

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

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Sections */
.how-it-works, .benefits, .pricing, .target-audience, .social-proof, .final-cta {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* How It Works */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 1rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    background: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per-minute {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.minutes {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.features i {
    color: var(--success-color);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
}

.audience-list.good li {
    background: rgba(72, 187, 120, 0.1);
}

.audience-list.not-good li {
    background: rgba(245, 101, 101, 0.1);
}

.audience-list.good i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.audience-list.not-good i {
    color: var(--error-color);
    margin-top: 0.25rem;
}

.alternative {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.125rem;
}

.testimonial-author strong {
    color: var(--text-color);
}

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

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.final-cta .btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-note {
    margin-top: 1rem;
    opacity: 0.8;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

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

.call-echo-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.call-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.25rem 0;
}

.call-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card.minutes .stat-icon {
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
}

.stat-card.sessions .stat-icon {
    background: rgba(46, 139, 139, 0.1);
    color: var(--secondary-color);
}

.stat-card.average .stat-icon {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success-color);
}

.stat-card.streak .stat-icon {
    background: rgba(237, 137, 54, 0.1);
    color: var(--warning-color);
}

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

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.stat-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.quick-actions {
    margin-bottom: 3rem;
}

.quick-actions h2 {
    margin-bottom: 1.5rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.action-card.primary {
    background: var(--primary-color);
    color: white;
}

.action-card.primary:hover {
    color: white;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.action-card:not(.primary) .action-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}

.action-card.primary .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.action-content h3 {
    margin-bottom: 0.25rem;
}

.action-content p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Sessions Table */
.recent-sessions {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.sessions-table {
    margin-top: 1rem;
}

.table-header {
    display: grid;
    grid-template-columns: 200px 100px 1fr 120px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.table-row {
    display: grid;
    grid-template-columns: 200px 100px 1fr 120px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.session-date {
    font-weight: 600;
}

.session-time {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.session-topics {
    color: var(--text-light);
}

.feedback-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feedback-status.sent {
    color: var(--success-color);
}

.feedback-status.pending {
    color: var(--warning-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Learning Tips */
.learning-tips {
    margin-top: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Auth Pages */
.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

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

.auth-form-section {
    padding: 3rem;
}

.auth-form {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

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

.form-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--error-color);
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    margin: 0;
}

.forgot-password {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.terms-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.terms-text a {
    color: var(--primary-color);
}

/* Auth Benefits */
.auth-benefits-section {
    background: var(--accent-color);
    padding: 3rem;
}

.benefits-content {
    max-width: 400px;
}

.benefit-header h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.benefit-list {
    space-y: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.beta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 2rem;
}

/* Auth Features */
.auth-features-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 3rem;
    text-align: center;
}

.features-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.features-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.feature-highlights {
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.demo-phone {
    display: flex;
    justify-content: center;
}

.phone-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-display i {
    font-size: 2rem;
}

.calling-text {
    font-weight: 600;
}

.phone-number {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Buy Minutes Page */
.buy-minutes {
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.current-balance {
    margin-top: 2rem;
}

.balance-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.balance-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.balance-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.balance-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.total-time {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.time-note {
    font-size: 0.75rem;
}

.usage-recommendations {
    margin: 4rem 0;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recommendation {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.recommendation-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* FAQ */
.faq-section {
    margin: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.purchase-summary {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Settings Page */
.settings {
    padding: 2rem 0;
}

.settings-content {
    max-width: 800px;
    margin: 0 auto;
}

.settings-section {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--accent-color);
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: var(--text-color);
}

.section-header i {
    color: var(--primary-color);
}

.settings-form {
    padding: 2rem;
}

.echo-number-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.number-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.number-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.notification-settings {
    padding: 2rem;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.notification-info h3 {
    margin-bottom: 0.5rem;
}

.notification-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.danger-zone {
    border: 2px solid var(--error-color);
}

.danger-zone .section-header {
    background: rgba(245, 101, 101, 0.1);
    color: var(--error-color);
}

.danger-actions {
    padding: 2rem;
}

.danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.danger-info h3 {
    color: var(--error-color);
    margin-bottom: 0.5rem;
}

.danger-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag {
    font-size: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* LinkedIn Hi-Tech Landing Page Styles */
.linkedin-hitech-page .hero-linkedin {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8rem 0;
}

.linkedin-hitech-page .hero-linkedin .hero-background {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
}

.tech-badge {
    background: rgba(255, 140, 66, 0.2) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.linkedin-hitech-page .hero-title {
    color: white;
    font-size: 4rem;
    margin-bottom: 2rem;
}

.linkedin-hitech-page .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.confidence-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.tech-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item i {
    color: var(--primary-color);
}

/* Tech Mockup */
.tech-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.window-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.window-title {
    color: #cccccc;
    font-size: 0.875rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Consolas', monospace;
}

.code-line {
    display: flex;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.line-number {
    color: #6e7781;
    margin-right: 1rem;
    width: 20px;
}

.code-text {
    color: #79c0ff;
}

.call-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 6px;
    color: var(--primary-color);
}

.pulsing {
    animation: pulse-phone 1.5s infinite;
}

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Problem/Solution Section */
.problem-solution {
    padding: 6rem 0;
    background: #f8fafc;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.problem-side .section-icon {
    background: var(--error-color);
}

.solution-side .section-icon {
    background: var(--success-color);
}

.problem-scenarios, .solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario, .feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.scenario i {
    color: var(--error-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.feature i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.scenario h3, .feature h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.scenario p, .feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.code-snippet {
    background: #1e1e1e;
    color: #79c0ff;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
}

.feature-example {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feedback-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feedback-item i.fa-check-circle {
    color: var(--success-color);
}

.feedback-item i.fa-arrow-up {
    color: var(--warning-color);
}

.uptime-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background: var(--success-color);
    box-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
}

.progress-example {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
}

.commit-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.commit-line i {
    color: var(--primary-color);
}

.tech-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
}

/* Tech Social Proof */
.tech-social-proof {
    padding: 6rem 0;
    background: var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-testimonial {
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 4px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.companies-using {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.companies-text {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-placeholder {
    background: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    color: var(--text-light);
    font-weight: 600;
    opacity: 0.7;
}

/* ROI Calculator */
.roi-calculator {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calculator-text h2 {
    color: white;
    margin-bottom: 2rem;
}

.calculation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.calc-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.calc-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.calc-text {
    opacity: 0.9;
}

.calc-text strong {
    color: white;
}

.calc-text span {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.roi-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.roi-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.roi-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    opacity: 0.8;
    font-size: 1.125rem;
}

.career-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.path-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    width: 100%;
}

.path-step.current {
    opacity: 0.8;
}

.path-step.future {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.step-info span {
    display: block;
    opacity: 0.8;
}

.salary {
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    font-size: 1.25rem !important;
}

.path-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
}

.path-arrow span {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* LinkedIn Pricing */
.linkedin-pricing {
    background: #f8fafc;
}

.starter-pack {
    border: 2px solid var(--success-color) !important;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.plan-note i {
    color: var(--primary-color);
}

.pricing-guarantee {
    margin-top: 3rem;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--success-color);
}

.guarantee-content i {
    color: var(--success-color);
    font-size: 1.5rem;
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: white;
}

.urgency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.urgency-text h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.urgency-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
}

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

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

.career-timeline h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    opacity: 0.9;
}

.timeline-content strong {
    color: white;
}

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

.limited-offer {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-details h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.offer-details p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-btn {
    transition: transform 0.2s ease;
    animation: gentle-pulse 3s infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Final CTA LinkedIn */
.final-cta-linkedin {
    background: var(--primary-color);
    padding: 6rem 0;
}

.final-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.125rem;
}

.benefit-row i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.guarantee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: white;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.guarantee-note i {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Reset mobile navigation to match desktop functionality */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        
        /* Override any inherited display/direction styles */
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile navigation items - replicate desktop nav-link behavior */
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        color: var(--text-color);
        font-weight: 500;
        font-size: 1rem;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: #f8f9fa;
        color: var(--primary-color);
    }
    
    /* Style primary button in mobile menu */
    .nav-menu .btn-primary {
        background: var(--primary-color);
        color: white;
        margin: 1rem 2rem;
        border-radius: 8px;
        border: none;
        font-weight: 600;
    }
    
    .nav-menu .btn-primary:hover {
        background: var(--primary-hover);
        color: white;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .auth-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-form {
        width: 95%;
    }
    
    .auth-benefits-section, .auth-features-section {
        display: none;
    }
    
    .dashboard-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .call-echo-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr 80px 1fr 100px;
        font-size: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .echo-number-card {
        flex-direction: column;
        text-align: center;
    }
    
    .danger-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    /* LinkedIn Landing Page Mobile Styles */
    .linkedin-hitech-page .hero-title {
        font-size: 2.5rem;
    }
    
    .linkedin-hitech-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-form {
        width: 95%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-cell {
        padding: 0.5rem 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   FACEBOOK LANDING PAGE STYLES
   ======================================== */

/* Facebook Page Body Class */
.facebook-english-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Facebook Hero Section */
.hero-facebook {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.family-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.age-benefits {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.benefit-item i {
    color: rgba(255, 255, 255, 0.9);
}

/* Lifestyle Mockup */
.lifestyle-mockup {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    opacity: 0.7;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
}

.scenario-card.active {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.scenario-avatar {
    font-size: 2rem;
    text-align: center;
    margin-top: 1rem;
}

/* Problem Scenarios Section */
.problem-scenarios {
    padding: 6rem 0;
    background: var(--background-color);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.scenario-group {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.age-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.age-badge.young {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.age-badge.middle {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.age-badge.mature {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.scenario-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.scenario-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.scenario-item p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: white;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-examples {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.example-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.confidence-indicators {
    margin-top: 1rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 600;
}

.personalization-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.personal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

.personal-item i {
    color: var(--primary-color);
    width: 20px;
}

.phone-demo {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.testimonials-carousel {
    position: relative;
    margin-top: 3rem;
}

.testimonial-group {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-group.active {
    display: block;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info h4 {
    margin: 0;
    font-size: 1.125rem;
}

.user-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-results {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.result-tag {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.age-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.age-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.active,
.age-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* How It Works Simple */
.how-it-works-simple {
    padding: 6rem 0;
    background: white;
}

.steps-simple {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin: 4rem 0;
    align-items: center;
}

.step-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.step-content small {
    color: var(--primary-color);
    font-weight: 600;
}

.step-visual {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 1rem;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cta-below-steps {
    text-align: center;
    margin-top: 3rem;
}

.cta-note {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Family Pricing */
.pricing-family {
    padding: 6rem 0;
    background: var(--background-color);
}

.pricing-comparison {
    margin-bottom: 4rem;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.comparison-item.expensive {
    background: #fee;
    border: 2px solid #fca5a5;
}

.comparison-item.best {
    background: #f0fff4;
    border: 2px solid var(--success-color);
}

.comparison-item.vs {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.comparison-item .price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.comparison-item.expensive .price {
    color: #dc2626;
}

.comparison-item.best .price {
    color: var(--success-color);
}

.per-what {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cons, .pros {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.cons {
    color: #dc2626;
}

.pros {
    color: var(--success-color);
}

.pricing-grid-family {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card-family {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.pricing-card-family.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.family-uses {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.use-case {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.use-case i {
    color: var(--primary-color);
}

.features-family {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: right;
}

.features-family li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

.features-family i {
    color: var(--success-color);
    flex-shrink: 0;
}

.family-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-content i {
    color: var(--success-color);
    font-size: 1.5rem;
}

/* Social Sharing */
.social-sharing {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: white;
    text-align: center;
}

.sharing-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.sharing-incentive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.sharing-incentive i {
    color: #ffd700;
    font-size: 1.25rem;
}

/* Final CTA Facebook */
.final-cta-facebook {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta-facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-facebook h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-facebook p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.final-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.benefit-final i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.cta-buttons-final {
    margin-top: 3rem;
}

.btn-extra-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.urgency-note i {
    color: #ffd700;
}

/* Pulse Animation */
.pulse-btn {
    animation: pulse 3s infinite;
}

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

/* Mobile Optimizations for Facebook */
@media (max-width: 768px) {
    .facebook-english-page .hero-facebook {
        padding: 5rem 0 4rem;
    }
    
    .facebook-english-page .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .facebook-english-page .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .age-benefits {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: 140px;
        text-align: center;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .steps-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 1rem 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-item.vs {
        display: none;
    }
    
    .pricing-grid-family {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card-family {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .age-selector {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .age-btn {
        min-width: 140px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .share-btn {
        min-width: 200px;
    }
    
    .final-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-final {
        padding: 1rem;
        text-align: center;
    }
    
    .final-cta-facebook h2 {
        font-size: 2rem;
    }
    
    .btn-extra-large {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 400px;
    }
    
    /* Better section spacing for tablets */
    .facebook-english-page section {
        padding: 4rem 0;
        /* Override the animation opacity on tablets */
        opacity: 1 !important;
        transform: none !important;
    }
    
    .solution-section {
        padding: 5rem 0;
    }
    
    /* Improve container padding */
    .facebook-english-page .container {
        padding: 0 1.5rem;
    }
}

/* Facebook Page - Mobile 480px and below */
@media (max-width: 480px) {
    .facebook-english-page .hero-facebook {
        padding: 4rem 0 3rem;
    }
    
    .facebook-english-page .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .facebook-english-page .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .age-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .benefit-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        min-width: 120px;
        text-align: center;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .example-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .step-content small {
        font-size: 0.75rem;
    }
    
    .pricing-card-family {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .pricing-card-family h3 {
        font-size: 1.25rem;
    }
    
    .pricing-card-family .price .amount {
        font-size: 2rem;
    }
    
    .family-uses {
        gap: 0.5rem;
    }
    
    .use-case {
        font-size: 0.8rem;
    }
    
    .features-family {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .user-info h4 {
        font-size: 1rem;
    }
    
    .user-role {
        font-size: 0.8rem;
    }
    
    .age-selector {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .age-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        width: 200px;
        text-align: center;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .share-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        min-width: 140px;
    }
    
    .final-benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-final {
        font-size: 0.85rem;
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .btn-extra-large {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        width: calc(100% - 1rem);
        margin: 0 0.5rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .phone-number {
        font-size: 1.125rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-item {
        padding: 1.25rem;
    }
    
    .comparison-item .price {
        font-size: 1.75rem;
    }
    
    .comparison-item .per-what {
        font-size: 0.8rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .guarantee-content h4 {
        font-size: 1rem;
    }
    
    .guarantee-content p {
        font-size: 0.85rem;
    }
    
    /* Improve touch targets */
    .btn, .age-btn, .share-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Better text readability */
    .facebook-english-page p {
        line-height: 1.6;
    }
    
    /* Reduce padding on container */
    .facebook-english-page .container {
        padding: 0 1rem;
    }
    
    /* Section spacing adjustments */
    .facebook-english-page section {
        padding: 3rem 0;
        /* Override the animation opacity on mobile */
        opacity: 1 !important;
        transform: none !important;
    }
    
    .solution-section {
        padding: 4rem 0;
    }
    
    .how-it-works-simple {
        padding: 4rem 0;
    }
    
    .pricing-family {
        padding: 4rem 0;
    }
    
    .final-cta-facebook {
        padding: 4rem 0;
    }
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Facebook page specific animation - only apply to facebook page */
.facebook-english-page section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .age-badge, .result-tag, .example-tag {
        border: 2px solid currentColor;
    }
    
    .scenario-card, .testimonial-card, .pricing-card-family {
        border: 2px solid var(--border-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .pulse-btn {
        animation: none;
    }
    
    .scenario-card {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    /* Facebook page specific reduced motion */
    .facebook-english-page section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Demo Offer Banner */
.demo-offer-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

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

.demo-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-offer-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.demo-offer-text h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.demo-offer-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

.demo-offer-text .echo-phone {
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: underline;
}

.demo-offer-cta {
    flex-shrink: 0;
}

.btn-demo-call {
    background: #ffd700;
    color: #2d3748;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-demo-call:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    color: #2d3748;
    text-decoration: none;
}

.btn-demo-call:active {
    transform: translateY(0);
}

.btn-demo-call i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    60% {
        transform: rotate(5deg);
    }
    70% {
        transform: rotate(-2deg);
    }
}

/* Mobile responsive for demo banner */
@media (max-width: 768px) {
    .demo-offer-banner {
        padding: 1rem 0;
    }
    
    .demo-offer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .demo-offer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .demo-offer-text h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .demo-offer-text p {
        font-size: 0.9rem;
    }
    
    .btn-demo-call {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .demo-offer-content {
        gap: 0.75rem;
    }
    
    .demo-offer-text h2 {
        font-size: 1.125rem;
    }
    
    .demo-offer-text p {
        font-size: 0.85rem;
    }
    
    .btn-demo-call {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}