/* ============================================ */
/* MODERN 2025 TYPOGRAPHY & DESIGN SYSTEM      */
/* Clean, professional, Apple/Stripe-inspired  */
/* ============================================ */

/* Override all glow effects globally */
*, *::before, *::after {
    text-shadow: none !important;
}

/* ============================================ */
/* BASE TYPOGRAPHY                             */
/* ============================================ */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - Clean & Bold */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: none !important;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

/* Paragraph text */
p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.7;
    text-shadow: none !important;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
    text-shadow: none !important;
}

a:hover {
    opacity: 0.8;
}

/* ============================================ */
/* HERO SECTION - MODERN STYLE                 */
/* ============================================ */

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: none !important;
}

.hero__lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: none !important;
}

.hero__trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.trust-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none !important;
}

/* ============================================ */
/* SECTION HEADERS - CLEAN CENTERED STYLE      */
/* ============================================ */

.section-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: none !important;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none !important;
}

/* ============================================ */
/* CARDS & CONTENT BLOCKS                      */
/* ============================================ */

.info-card__title,
.feature-card__title,
.process-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: none !important;
}

.info-card__copy,
.feature-card__desc,
.process-card__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    text-shadow: none !important;
}

/* Feature Card Badge */
.feature-card__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #00e5ff;
    margin-bottom: 1rem;
    text-shadow: none !important;
}

/* ============================================ */
/* BENEFITS LIST - MODERN LAYOUT               */
/* ============================================ */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: none !important;
}

.benefit-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    text-shadow: none !important;
}

/* ============================================ */
/* PROCESS STEPS - CLEAN CARDS                 */
/* ============================================ */

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.process-card__badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 1.25rem;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    display: none;
}

@media (min-width: 768px) {
    .process-arrow {
        display: flex;
        align-items: center;
    }
}

/* ============================================ */
/* REVIEWS - TESTIMONIAL CARDS                 */
/* ============================================ */

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: none !important;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    text-shadow: none !important;
}

.author-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none !important;
}

/* ============================================ */
/* CTA SECTION - BOLD & CENTERED               */
/* ============================================ */

.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: none !important;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-shadow: none !important;
}

/* ============================================ */
/* FOOTER - CLEAN & MINIMAL                    */
/* ============================================ */

.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: none !important;
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    text-shadow: none !important;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
    text-shadow: none !important;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    text-shadow: none !important;
}

/* ============================================ */
/* BUTTONS - MODERN STYLE                      */
/* ============================================ */

.btn {
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    border-radius: 8px;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-shadow: none !important;
}

.btn-primary,
.btn--primary {
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover,
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

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

/* ============================================ */
/* EXIT INTENT POPUP - CLEAN MODAL             */
/* ============================================ */

.exit-intent-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: none !important;
}

.exit-intent-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: none !important;
}

/* ============================================ */
/* INQUIRY MODAL - CLEAN STYLE                 */
/* ============================================ */

.inquiry-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: none !important;
}

.inquiry-modal-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #00e5ff;
    text-shadow: none !important;
}

/* ============================================ */
/* WORD LOADER ANIMATION - CLEAN               */
/* ============================================ */

.word-loader {
    color: #00e5ff;
    text-shadow: none !important;
}

.word-loader-word {
    color: #00e5ff;
    text-shadow: none !important;
}

/* ============================================ */
/* MOBILE OPTIMIZATIONS                        */
/* ============================================ */

@media (max-width: 767px) {
    .hero__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .hero__trust {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8125rem;
    }
}

/* ============================================ */
/* HIGHLIGHT / TEAM SECTION                    */
/* ============================================ */

.highlight-item,
.team-highlights .highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: none !important;
}

.highlight-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    text-shadow: none !important;
}

/* ============================================ */
/* VIDEO CONTAINERS - CLEAN FRAMES             */
/* ============================================ */

.standard-video-container,
.story-video-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-video-container video,
.story-video-container video {
    display: block;
    width: 100%;
}


