/* Saira Font */
@font-face { font-family: 'Saira'; src: url('../assets/font/Saira/Saira-VariableFont_wdth,wght.ttf') format('truetype'); font-weight: 100 900; font-style: normal; }
@font-face { font-family: 'Saira'; src: url('../assets/font/Saira/Saira-Italic-VariableFont_wdth,wght.ttf') format('truetype'); font-weight: 100 900; font-style: italic; }
/* Crimson Text Font */
@font-face { font-family: 'Crimson Text'; src: url('../assets/font/Crimson_Text/CrimsonText-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Crimson Text'; src: url('../assets/font/Crimson_Text/CrimsonText-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Crimson Text'; src: url('../assets/font/Crimson_Text/CrimsonText-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
/* Space Grotesk Font */
@font-face { font-family: 'Space Grotesk'; src: url('../assets/font/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype'); font-weight: 300 700; font-style: normal; }
/* Unbounded Font */
@font-face { font-family: 'Unbounded'; src: url('../assets/font/Unbounded/Unbounded-VariableFont_wght.ttf') format('truetype'); font-weight: 200 900; font-style: normal; }
/* Poppins Font */
@font-face { font-family: 'Poppins'; src: url('../assets/font/Poppins/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('../assets/font/Poppins/Poppins-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('../assets/font/Poppins/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('../assets/font/Poppins/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
/* Reset and Base Styles */ 
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-cyan: #06b6d4; --primary-blue: #3b82f6; --dark-bg: #0a1628; --darker-bg: #050d1a; --text-light: #ffffff; --text-gray: #94a3b8; --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); --gradient-dark: linear-gradient(180deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%); }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--darker-bg); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; background: transparent; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: center; align-items: center; }
.nav-pill { display: flex; align-items: center; gap: 30px; background: rgba(10, 22, 40, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 12px 35px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-light); font-size: 1.2rem; font-weight: 600; }
.logo-icon { display: flex; align-items: center; justify-content: center; }
.header-logo-img { height: 32px; width: auto; }
.logo-text { color: var(--text-light); font-weight: 600; font-size: 1.1rem; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { font-family: 'Unbounded', sans-serif; color: var(--text-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-cyan); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--text-light); transition: 0.3s; }
/* Hero Section */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 80px; overflow: visible; }
/* Sunlight rays background effect */
.hero-background { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, #001529 0%, #002a4d 100%); z-index: -2; overflow: visible; }
.light-rays { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; overflow: visible; z-index: -1; pointer-events: none; }
/* Sunlight rays spreading from top center */
.light-rays::before { content: ''; position: absolute; top: 0; left: 50%; width: 200%; height: 40vh; transform: translateX(-50%); background: conic-gradient(from 90deg at 50% 0%,             /* Right side rays (0deg to 90deg) */
transparent 0deg, rgba(80, 210, 255, 0.25) 2deg, rgba(80, 210, 255, 0.4) 4deg, rgba(80, 210, 255, 0.25) 6deg, transparent 8deg, transparent 18deg, rgba(80, 210, 255, 0.2) 20deg, rgba(80, 210, 255, 0.35) 22deg, rgba(80, 210, 255, 0.2) 24deg, transparent 26deg, transparent 38deg, rgba(80, 210, 255, 0.25) 40deg, rgba(80, 210, 255, 0.4) 42deg, rgba(80, 210, 255, 0.25) 44deg, transparent 46deg, transparent 58deg, rgba(80, 210, 255, 0.2) 60deg, rgba(80, 210, 255, 0.35) 62deg, rgba(80, 210, 255, 0.2) 64deg, transparent 66deg, transparent 78deg, rgba(80, 210, 255, 0.25) 80deg, rgba(80, 210, 255, 0.4) 82deg, rgba(80, 210, 255, 0.25) 84deg, transparent 86deg,             /* Center ray at 90deg (straight down) */
transparent 88deg, rgba(80, 210, 255, 0.3) 89deg, rgba(80, 210, 255, 0.5) 90deg, rgba(80, 210, 255, 0.3) 91deg, transparent 92deg,             /* Left side rays (90deg to 180deg) */
transparent 96deg, rgba(80, 210, 255, 0.25) 98deg, rgba(80, 210, 255, 0.4) 100deg, rgba(80, 210, 255, 0.25) 102deg, transparent 104deg, transparent 116deg, rgba(80, 210, 255, 0.2) 118deg, rgba(80, 210, 255, 0.35) 120deg, rgba(80, 210, 255, 0.2) 122deg, transparent 124deg, transparent 136deg, rgba(80, 210, 255, 0.25) 138deg, rgba(80, 210, 255, 0.4) 140deg, rgba(80, 210, 255, 0.25) 142deg, transparent 144deg, transparent 156deg, rgba(80, 210, 255, 0.2) 158deg, rgba(80, 210, 255, 0.35) 160deg, rgba(80, 210, 255, 0.2) 162deg, transparent 164deg, transparent 174deg, rgba(80, 210, 255, 0.25) 176deg, rgba(80, 210, 255, 0.4) 178deg, rgba(80, 210, 255, 0.25) 180deg); pointer-events: none; opacity: 1; -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%); mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%); animation: raysPulse 3s ease-in-out infinite; }
@keyframes raysPulse {
 0%, 100% { opacity: 0.6; filter: brightness(0.8); }
50% { opacity: 1; filter: brightness(1.3); }
 }
/* Bright glow at top center */
.light-rays::after { content: ''; position: absolute; top: 0; left: 50%; width: 100%; height: 100vh; background: radial-gradient(ellipse 50% 35% at 50% 0%, rgba(150, 230, 255, 0.9) 0%, rgba(80, 200, 255, 0.5) 20%, transparent 50%), radial-gradient(ellipse 70% 50% at 50% 0%, rgba(80, 200, 255, 0.4) 0%, transparent 45%), radial-gradient(ellipse 100% 70% at 50% 0%, rgba(40, 180, 255, 0.25) 0%, transparent 55%); transform: translateX(-50%); pointer-events: none; }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: center; position: relative; min-height: 600px; gap: 60px; }
.hero-content { max-width: 600px; z-index: 2; }
.hero-title { font-family: 'Saira', sans-serif; font-size: 4rem; font-weight: 600; line-height: 1.2; margin-bottom: 20px; color: var(--text-light); }
.hero-title .highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 20px; }
.app-buttons { display: flex; gap: 15px; margin-top: 40px; }
.app-btn { display: flex; align-items: center; gap: 10px; padding: 12px 24px; background: var(--text-light); color: var(--dark-bg); text-decoration: none; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.app-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); }
.app-icon { width: 24px; height: 24px; }
.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-text .small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-text .big { font-size: 1rem; font-weight: 600; }
/* Hero Carousel */
.hero-phone-right .carousel-container { position: relative; width: 320px; overflow: hidden; background: transparent; padding: 0; touch-action: none; user-select: none; -webkit-user-select: none; cursor: grab; }
.carousel-track { display: flex; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-slide { min-width: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-phone-right .carousel-slide img, .hero-phone-right .carousel-slide video { width: 100%; height: auto; max-height: 550px; object-fit: contain; border-radius: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
.carousel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: all 0.3s ease; }
.carousel-dots .dot.active { background: var(--primary-cyan); width: 24px; border-radius: 4px; }
.carousel-dots .dot:hover { background: rgba(255, 255, 255, 0.6); }
/* Hero Modal */
.hero-video-link { display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 600; line-height: 1; color: var(--text-light); background: transparent; border: none; cursor: pointer; transition: all 0.4s ease; }
.hv-link-icon { width: 24px; height: 24px; }
.hero-video-link:hover { color: var(--primary-cyan); }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; justify-content: center; align-items: center; opacity: 1; }
.modal { width: 90%; max-width: 800px; position: relative; transform: scale(0.7); transition: transform 0.3s ease; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
.modal-overlay.active .modal { transform: scale(1); }
.modal-close-btn { width: 30px; height: 30px; position: absolute; top: -30px; right: 0; background: none; border: none; font-size: 30px; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; }
.modal-close-btn:hover { color: var(--primary-cyan); }
.modal-body { width: 100%; border-radius: 16px; overflow: hidden; }
/* Hero YouTube */
.hero-youtube { width: 100%; height: 100%; aspect-ratio: 16/9; }
.hero-youtube iframe { width: 100%; height: 100%; border: none; }
.phone { position: relative; }
.phone-mockup { max-height: 550px; width: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)); }
.phone-main { z-index: 2; }
.phone-main .phone-mockup { max-height: 550px; }
.phone-secondary { position: absolute; left: -80px; bottom: 30px; z-index: 1; }
.phone-secondary .phone-mockup { max-height: 380px; }
.phone-frame { width: 280px; height: 570px; background: #1a1a1a; border-radius: 45px; padding: 12px; box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05); }
.phone-frame.small { width: 200px; height: 400px; border-radius: 35px; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #1e3a5f 0%, #0d1f35 100%); border-radius: 35px; overflow: hidden; position: relative; }
.phone-frame.small .phone-screen { border-radius: 28px; }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 20px; z-index: 10; }
.video-call { width: 100%; height: calc(100% - 80px); display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.video-call.small-call { height: calc(100% - 60px); background: linear-gradient(135deg, #1e5a7e 0%, #0d2f45 100%); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.call-timer { position: absolute; top: 50px; right: 15px; background: rgba(0, 0, 0, 0.5); padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
.call-quality { position: absolute; top: 50px; right: 90px; display: flex; align-items: center; }
.quality-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.call-controls { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; display: flex; justify-content: center; align-items: center; gap: 20px; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(10px); }
.call-controls.small-controls { height: 60px; gap: 12px; }
.control-btn { width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.control-btn.small { width: 35px; height: 35px; }
.control-btn svg { width: 24px; height: 24px; fill: white; }
.control-btn.video-btn { background: #3b82f6; }
.control-btn.mic-btn { background: #6b7280; }
.control-btn.end-btn { background: #ef4444; }
.control-btn.small .dot { width: 8px; height: 8px; background: white; border-radius: 50%; }
.control-btn:hover { transform: scale(1.1); }
/* Love Section */
.love-section { padding: 100px 0; background: var(--darker-bg); }
.section-title { font-family: 'Saira', sans-serif; font-size: 2.8rem; text-align: center; margin-bottom: 60px; }
.section-title .highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.feature-card { background: rgba(30, 41, 59, 0.8); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 30px; text-align: left; transition: transform 0.3s ease, border-color 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(6, 182, 212, 0.3); }
.feature-image { width: 100%; height: 400px; margin-bottom: 25px; border-radius: 16px; overflow: hidden; display: flex; align-items: flex-start; justify-content: center; background: rgba(20, 30, 45, 0.5); position: relative; }
.feature-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom, transparent, rgba(30, 41, 59, 0.95)); pointer-events: none; border-radius: 0 0 16px 16px; }
.feature-image img { width: 100%; height: 100%; object-fit: contain; object-position: top center; border-radius: 16px 16px 0 0; }
.feature-image-top img { width: 100%; object-fit: contain; object-position: bottom center; transform: scale(1); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; color: var(--text-light); }
.feature-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; }
/* How Section */
.how-section { padding: 100px 0; background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%); }
.how-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto; }
.steps-stepper { display: flex; flex-direction: column; gap: 0; font-family: 'Inter', sans-serif; }
.step-item { display: flex; align-items: flex-start; gap: 20px; position: relative; cursor: pointer; padding: 15px 20px; border-radius: 12px; transition: all 0.3s ease; }
.step-item:hover { background: rgba(6, 182, 212, 0.05); }
.step-item .step-number { width: 50px; height: 50px; min-width: 50px; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--text-gray); transition: all 0.3s ease; position: relative; z-index: 5; }
.step-item.active .step-number { background: var(--gradient-primary); border-color: var(--primary-cyan); color: var(--text-light); box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
.step-line { position: absolute; left: 44px; top: 65px; width: 2px; height: calc(100% - 50px); background: rgba(255, 255, 255, 0.1); z-index: 0; }
.step-item:last-child .step-line { display: none; }
.step-item.active .step-line { background: var(--primary-cyan); }
.step-text { flex: 1; padding-top: 5px; }
.step-text h3 { font-family: 'Inter', serif; font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; color: var(--text-gray); transition: color 0.3s ease; }
.step-item.active .step-text h3 { color: var(--primary-cyan); }
.step-text p { font-family: 'Inter', serif; color: var(--text-gray); font-size: 0.9rem; font-weight: 600; line-height: 1.5; opacity: 0.7; transition: opacity 0.3s ease; }
.step-item.active .step-text p { opacity: 1; color: #ffffff; }
/* Phone Mockup for Steps */
.step-phone { position: relative; display: flex; align-items: center; justify-content: center; height: 500px; }
.phone-circle { position: absolute; width: 350px; height: 350px; background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%); border-radius: 50%; z-index: 1; }
.phone-mockup-container { position: relative; z-index: 2; }
.step-phone-img { max-height: 450px; width: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)); transition: opacity 0.3s ease, transform 0.3s ease; }
.step-phone-img.fade-out { opacity: 0; transform: scale(0.95); }
.step-phone-img.fade-in { opacity: 1; transform: scale(1); }
/* Subscription Section */
.subscription-section { padding: 100px 0; background: var(--dark-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 800px; margin: 0 auto; }
.pricing-grid-single { display: flex; justify-content: center; max-width: 800px; margin: 40px auto 0; }
.pricing-grid-single .pricing-card { max-width: 385px; width: 100%; }
.pricing-card { background: #ffffff; border-radius: 20px; padding: 30px 25px; text-align: left; position: relative; border-left: 5px solid #3b82f6; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); }
.pricing-card.selected { border-left-color: #06b6d4; }
.minutes-badge { position: absolute; top: 15px; right: -5px; background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: #ffffff; padding: 8px 18px; border-radius: 8px 0 0 8px; font-size: 0.85rem; font-weight: 600; box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); }
.selected-check { position: absolute; top: 70px; right: 20px; width: 28px; height: 28px; background: #22c55e; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.pricing-card.selected .selected-check { display: flex; }
.selected-check svg { width: 16px; height: 16px; stroke: #ffffff; }
.plan-name { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: #374151; letter-spacing: 1px; margin-bottom: 5px; margin-top: 10px; }
.pricing-card .price { font-size: 2rem; font-weight: 700; color: #f59e0b; margin-bottom: 20px; background: none; -webkit-background-clip: unset; -webkit-text-fill-color: #f59e0b; background-clip: unset; }
.pricing-card .features-list { list-style: none; margin-bottom: 0; }
.pricing-card .features-list li { font-family: 'Poppins', sans-serif; display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: #4b5563; font-size: 0.9rem; line-height: 1.5; border-bottom: none; }
.pricing-card .features-list li:last-child { padding-bottom: 0; }
.check-icon { flex-shrink: 0; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-icon svg { width: 18px; height: 18px; stroke: #06b6d4; }
/* Download Now Section */
.download-section { padding: 80px 0; background: var(--darker-bg); text-align: center; }
.download-title { font-family: 'Inter', serif; font-size: 2.5rem; color: #06b6d4; margin-bottom: 40px; }
.download-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.download-app-btn { display: flex; align-items: center; gap: 12px; padding: 14px 28px; background: var(--text-light); color: var(--dark-bg); text-decoration: none; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.download-app-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); }
.download-icon { width: 28px; height: 28px; }
.download-btn-text { display: flex; flex-direction: column; text-align: left; }
.download-btn-text .small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }
.download-btn-text .big { font-size: 1.1rem; font-weight: 600; }
/* FAQ Section */
.faq-section { padding: 100px 0; background: var(--dark-bg); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-radius: 16px; overflow: hidden; background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.faq-item.active { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%); border-color: transparent; }
.faq-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; transition: all 0.3s ease; }
.faq-item.active .faq-header { padding-bottom: 12px; }
.faq-question-text { font-size: 1.1rem; font-weight: 600; color: var(--text-light); transition: color 0.3s ease; }
.faq-item.active .faq-question-text { color: #ffffff; }
.faq-icon { width: 32px; height: 32px; border: 2px solid var(--primary-cyan); background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.faq-item.active .faq-icon { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--primary-cyan); stroke-width: 2; transition: all 0.3s ease; }
.faq-item.active .faq-icon svg { stroke: #ffffff; }
.faq-icon .vertical-line { transition: opacity 0.3s ease; }
.faq-item.active .faq-icon .vertical-line { opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 25px; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 25px 20px; }
.faq-answer p { color: rgba(255, 255, 255, 0.9); line-height: 1.6; font-size: 1rem; margin: 0; }
/* User Reviews Section */
.reviews-section { padding: 100px 0; background: var(--darker-bg); overflow: hidden; }
.reviews-slider { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.reviews-track { display: flex; gap: 20px; animation: scroll-left 30s linear infinite; width: max-content; }
.reviews-track-reverse { animation: scroll-right 30s linear infinite; }
@keyframes scroll-left {
 0% { transform: translateX(0); }
100% { transform: translateX(-25%); }
 }
@keyframes scroll-right {
 0% { transform: translateX(-25%); }
100% { transform: translateX(0); }
 }
.review-card { min-width: 280px; max-width: 280px; background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%); border-radius: 16px; padding: 25px; position: relative; }
.review-quote { position: absolute; top: 20px; right: 20px; opacity: 0.3; }
.review-quote svg { width: 24px; height: 24px; fill: #ffffff; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.review-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.3); }
.review-name { font-size: 1rem; font-weight: 600; color: #ffffff; }
.review-divider { width: 60%; height: 2px; background: rgba(255, 255, 255, 0.3); margin-bottom: 15px; }
.review-text { color: rgba(255, 255, 255, 0.95); font-size: 0.95rem; line-height: 1.6; margin: 0; }
/* Support Section */
.support-section { padding: 100px 0; background: var(--dark-bg); }
/* Support Page - Full height */
.support-section.support-page { min-height: 100vh; padding-top: 120px; display: flex; flex-direction: column; justify-content: center; }
.support-section .section-title { text-align: center; margin-bottom: 60px; }
.support-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.support-text { padding-top: 20px; }
.support-main { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--text-light); line-height: 1.5; margin-bottom: 30px; }
.support-email { font-size: 1.1rem; color: var(--text-gray); line-height: 1.6; }
.support-email a { color: var(--primary-cyan); text-decoration: underline; transition: color 0.3s ease; }
.support-email a:hover { color: var(--text-light); }
.support-form { background: transparent; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-gray); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: var(--text-light); font-size: 1rem; transition: border-color 0.3s ease, background 0.3s ease; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-gray); opacity: 0.6; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-cyan); background: rgba(30, 41, 59, 0.8); }
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; padding: 16px; background: var(--text-light); color: var(--dark-bg); border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.4s ease; position: relative; overflow: hidden; z-index: 1; }
.submit-btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #00c4cc 0%, #00b4d8 50%, #0096c7 100%); opacity: 0; z-index: -1; transition: opacity 0.4s ease; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); color: var(--text-light); }
.submit-btn:hover::before { opacity: 1; }
/* Delete Me Page  */
.delete-me-section.delete-me-page { padding-top: 120px; display: flex; flex-direction: column; }
.delete-me-section .container { width: 100%; }
.delete-me-content-box { width: 100%; max-width: 550px; margin: 0 auto; }
.delete-me-section .section-title { text-align: center; margin-bottom: 60px; }
.delete-me-content { width: 100%; display: flex; flex-flow: column; gap: 30px; }
.delete-me-text { padding-top: 20px; }
.delete-me-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 600; line-height: 1.2; color: var(--text-light); margin-bottom: 10px; }
.delete-me-para { font-size: 1.1rem; color: var(--text-gray); line-height: 1.5; }
.delete-me-form { background: transparent; }
/* Footer */
.footer { padding: 50px 0 30px; color: #ffffff; background: linear-gradient(135deg, #0a1628 0%, #22849c 50%, #1fc9f3 100%); }
.footer a { text-decoration: none; color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease; }
.footer a:hover { color: #ffffff; }
.footer-content { display: grid; grid-template-columns: 1fr; gap: 50px; }
.footer-logo { max-width: 240px; margin: 0 auto 10px; }
.footer-logo-img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline { font-size: 1.1rem; text-align: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px 60px; justify-content: center; }
.footer a { font-size: 1rem; }
.footer-divider { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.2); margin: 30px auto; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-legal { display: flex; gap: 30px; }
.footer-bottom p, .footer-legal a { font-size: 0.8rem; }
/* Responsive Design */
@media (max-width:1024px) {
 .hero-phone-right .carousel-container { width: 240px; }
.hero-phone-right .carousel-slide img, .hero-phone-right .carousel-slide video { height: 420px; }
.features-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
.pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
.pricing-grid-single { max-width: 400px; padding: 0 15px; }
.pricing-grid-single .pricing-card { max-width: 100%; }
.pricing-card.selected { transform: none; }
.pricing-card.selected:hover { transform: translateY(-5px); }
 }
@media (max-width:768px) {
 .nav-container { justify-content: center; }
.nav-pill { padding: 10px 15px; gap: 0; justify-content: space-between; width: auto; }
.logo { gap: 8px; }
.header-logo-img { height: 28px; }
.logo-text { font-size: 1rem; }
.nav-links { display: none; position: fixed; top: 80px; left: 50%; transform: translateX(-50%); background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 25px 40px; gap: 5px; border-radius: 20px; border: 1px solid rgba(6, 182, 212, 0.2); min-width: 220px; text-align: center; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); z-index: 1001; }
.nav-links.active { display: flex; animation: fadeInDown 0.3s ease; }
.nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.nav-links li:last-child { border-bottom: none; }
.nav-links a { font-size: 1rem; font-weight: 500; }
.hamburger { display: flex; margin-left: 20px; padding: 8px; background: rgba(6, 182, 212, 0.1); border-radius: 8px; border: 1px solid rgba(6, 182, 212, 0.2); transition: all 0.3s ease; }
.hamburger:hover { background: rgba(6, 182, 212, 0.2); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@keyframes fadeInDown {
 from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
to { opacity: 1; transform: translateX(-50%) translateY(0); }
 }
.hero-title { font-size: 3rem; }
.hero-phones { height: 400px; }
.phone-main .phone-mockup { max-height: 400px; }
.phone-secondary .phone-mockup { max-height: 280px; }
.phone-secondary { left: -50px; bottom: 20px; }
.app-buttons { justify-content: center; margin-top: 20px; }
.hero-container { flex-direction: column; min-height: auto; padding-top: 20px; gap: 30px; }
.hero-phone-right { margin-bottom: 30px; }
.hero-phone-right .carousel-container { width: 220px; }
.hero-phone-right .carousel-slide img, .hero-phone-right .carousel-slide video { height: 380px; }
.hero-content { max-width: 100%; margin-right: 0; text-align: center; }
.features-grid { grid-template-columns: 1fr; max-width: 100%; }
.feature-image { height: 300px; }
.how-content { grid-template-columns: 1fr; gap: 40px; }
.step-phone { height: 400px; order: -1; }
.step-phone-img { max-height: 350px; }
.phone-circle { width: 280px; height: 280px; }
.section-title { font-size: 2rem; }
.support-content { grid-template-columns: 1fr; gap: 40px; }
.support-main { font-size: 1.3rem; }
.footer-content { gap: 40px; }
.footer-logo { max-width: 200px; }
.footer-bottom { flex-direction: column; text-align: center; }
.footer-legal { justify-content: center; }
.pricing-grid { grid-template-columns: 1fr; max-width: 100%; padding: 0 15px; }
.pricing-grid-single { max-width: 100%; padding: 0 15px; }
.pricing-grid-single .pricing-card { max-width: 100%; }
.pricing-card { padding: 25px 20px; }
.pricing-card .price { font-size: 1.75rem; }
.pricing-card .features-list li { font-size: 0.9rem; padding: 8px 0; }
.minutes-badge { font-size: 0.7rem; padding: 4px 10px; }
 }
@media (max-width:480px) {
 .hero-title { font-size: 2.5rem; }
.hero-phones { height: 320px; }
.app-buttons { flex-flow: column; align-items: center; }
.phone-main .phone-mockup { max-height: 320px; }
.phone-secondary .phone-mockup { max-height: 220px; }
.phone-secondary { left: -30px; bottom: 15px; }
.pricing-card { padding: 20px 15px; }
.pricing-card .price { font-size: 1.5rem; }
.pricing-card .features-list li { font-size: 0.85rem; gap: 8px; }
.plan-name { font-size: 1rem; }
.minutes-badge { font-size: 0.65rem; padding: 3px 8px; }
 }
/* Animations */
@keyframes float {
 0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
 }
@keyframes pulse {
 0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
 }
.phone-main { animation: float 4s ease-in-out infinite; }
.phone-secondary { animation: float 4s ease-in-out infinite 0.5s; }
.quality-dot { animation: pulse 2s ease-in-out infinite; }
/* Smooth Scroll Offset for Fixed Header */
section[id] { scroll-margin-top: 80px; }
.alert.alert-danger {
    color: red;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
