/*
 * DUODRIVEN Website Improvements
 * Additional styles for new sections
 */

/* ============================================
 * INDUSTRY ICONS (Hero Social Proof)
 * ============================================ */

.client-industries {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    cursor: default;
    transition: all 0.2s;
}

.industry-icon:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.industry-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    z-index: 100;
}

.industry-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.client-count {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.75rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.count-label {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.2rem;
}

/* ============================================
 * TRUST BADGE TOOLTIP
 * ============================================ */

.trust-badge-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.trust-badge .info-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.6;
}

.trust-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    width: 300px;
    text-align: center;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1a1a2e;
}

.trust-tooltip strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B5CF6;
}

.trust-badge-wrapper:hover .trust-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
}

@media (max-width: 768px) {
    .trust-tooltip {
        width: 260px;
        font-size: 0.8rem;
    }
}

/* ============================================
 * STATS TICKER CONTEXT
 * ============================================ */

.ticker-label small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.6;
    font-weight: 400;
    margin-top: 0.1rem;
}

/* ============================================
 * TESTIMONIALS SECTION
 * ============================================ */

.section-testimonials {
    position: relative;
    background: var(--color-bg-secondary);
}

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

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-header {
    margin-bottom: 0.75rem;
}

.testimonial-badge-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: #8B5CF6;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 20px;
}

.testimonial-rating {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

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

.client-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-weight: 700;
    color: var(--color-text-primary);
    font-style: normal;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

.author-industry {
    font-size: 0.75rem;
    color: #8B5CF6;
    opacity: 0.8;
}

.author-name {
    font-weight: 700;
    color: var(--color-text-primary);
    font-style: normal;
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
}

.result-value {
    font-weight: 700;
    color: var(--color-accent-emerald);
}

/* ============================================
 * RESULTS GUARANTEE SECTION
 * ============================================ */

.section-guarantee {
    position: relative;
    overflow: hidden;
}

.guarantee-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.guarantee-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.guarantee-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.guarantee-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--color-accent-emerald);
    margin-bottom: 0.5rem;
}

.guarantee-subtext {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.guarantee-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .guarantee-features {
        justify-content: center;
    }
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.guarantee-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent-emerald);
}

/* ============================================
 * TECH PARTNERS SECTION
 * ============================================ */

.section-partners {
    position: relative;
    background: var(--color-bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.partner-icon {
    font-size: 2rem;
}

.partner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-in {
    margin-top: 4rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-tertiary);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.featured-placeholder {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    font-style: italic;
}

/* ============================================
 * PRICING TEASER SECTION (Homepage)
 * ============================================ */

.pricing-teaser {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    text-align: center;
}

.pricing-teaser .container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-teaser .section-subtitle {
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.08);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-amount {
    margin: 1.5rem 0;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
}

.price-period {
    font-size: 1rem;
    opacity: 0.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255,255,255,0.85);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}

.pricing-link {
    display: inline-block;
    color: #8B5CF6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.pricing-link:hover {
    color: #A78BFA;
}

/* ============================================
 * TECH PARTNERS SECTION
 * ============================================ */

.tech-partners {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}

.partners-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.partner-item {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.partner-item:hover {
    opacity: 0.8;
}

.partner-name {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

/* Old pricing teaser card styles (kept for compatibility) */
.section-pricing-teaser {
    position: relative;
    background: var(--color-bg-secondary);
}

.pricing-teaser-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-teaser-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-preview-grid {
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

.pricing-teaser-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .pricing-teaser-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.pricing-teaser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.teaser-icon {
    font-size: 2rem;
}

.teaser-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.teaser-price {
    font-size: 1rem;
    color: var(--color-text-primary);
}

.teaser-price strong {
    color: var(--color-accent-cyan);
    font-size: 1.1rem;
}

/* ============================================
 * BLOG SECTION STYLES
 * ============================================ */

.blog-hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
    margin-bottom: 0.75rem;
}

.blog-category {
    color: var(--color-accent-cyan);
    font-weight: 600;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 0.75rem;
}

.blog-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
 * EXIT INTENT POPUP
 * ============================================ */

.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popup-enter 0.4s ease;
}

@keyframes popup-enter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.exit-popup-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.exit-popup-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-popup-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.exit-popup-input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
}

.exit-popup-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.exit-popup-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

.exit-popup-divider::before,
.exit-popup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.exit-popup-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    color: #25D366;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exit-popup-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.exit-popup-whatsapp svg {
    flex-shrink: 0;
}

.exit-popup-note {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
    margin-top: 1rem;
}

/* ============================================
 * MOBILE RESPONSIVE ADJUSTMENTS
 * ============================================ */

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .guarantee-card {
        gap: 1.5rem;
    }
    
    .guarantee-icon {
        font-size: 3rem;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .guarantee-text {
        font-size: 1rem;
    }
    
    .partners-grid {
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1rem;
    }
    
    .partner-icon {
        font-size: 1.5rem;
    }
    
    .exit-popup {
        padding: 2rem 1.5rem;
    }
    
    .exit-popup-title {
        font-size: 1.25rem;
    }
}

/* ============================================
 * LOGO STYLES
 * ============================================ */

.nav-logo .logo-svg {
    height: 36px;
    width: auto;
}

.mobile-logo .logo-svg-mobile {
    height: 32px;
    width: auto;
}

.nav-logo .logo-text,
.mobile-logo .logo-text {
    display: none;
}

/* ============================================
 * SCHEDULE SECTION (Calendly-Style)
 * ============================================ */

.section-schedule {
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    overflow: hidden;
}

.section-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
}

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

.schedule-header {
    margin-bottom: 2rem;
}

.schedule-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.schedule-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.schedule-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.schedule-feature:hover {
    background: rgba(0, 217, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateX(5px);
}

.schedule-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.schedule-feature .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00d9ff;
}

.schedule-feature .feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.schedule-feature .feature-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Calendar Card */
.schedule-calendar {
    position: relative;
}

.calendar-card {
    background: rgba(10, 14, 26, 0.9);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.calendar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d9ff, #3b82f6);
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #00d9ff, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-avatar svg {
    width: 50px;
    height: 50px;
}

.calendar-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

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

.calendar-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.calendar-detail svg {
    width: 16px;
    height: 16px;
    stroke: #00d9ff;
}

.calendar-slots {
    margin-bottom: 1.5rem;
}

.slots-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.4);
    color: #00d9ff;
}

.time-slot:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.3);
}

.time-slot.selected {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(59, 130, 246, 0.2));
    border-color: #00d9ff;
    color: #00d9ff;
}

.calendar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.calendar-cta:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.5);
    color: #00d9ff;
}

.calendar-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* Calendly Trigger Button (Contact Page) */
.calendly-trigger {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendly-trigger:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(59, 130, 246, 0.2));
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateX(5px);
}

button.direct-link {
    width: 100%;
    text-align: left;
    font-family: inherit;
}

/* Hero Button as Button Element */
button.hero-btn-primary {
    cursor: pointer;
    font-family: inherit;
}

/* Schedule Section Responsive */
@media (max-width: 1024px) {
    .schedule-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .schedule-content {
        text-align: center;
    }
    
    .schedule-features {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .calendar-card {
        padding: 1.5rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-feature {
        padding: 1rem;
    }
    
    .schedule-feature .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .schedule-feature .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}
