
:root {
    --primary-color: #007AFF;
    --primary-dark: #0051D5;
    --primary-light: #5EA8FF;
    --accent-color: #5AC8FA;
    --text-dark: #1D1D1F;
    --text-light: #6E6E73;
    --bg-light: #F5F7FA;
    --white: #ffffff;
    --success: #34C759;
    --error: #fb0d00;
    --orange: #FF9500;
    --shadow-sm: 0 2px 8px rgba(0, 122, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 122, 255, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 122, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #0A84FF;
    --primary-dark: #0066CC;
    --primary-light: #409CFF;
    --accent-color: #64D2FF;
    --text-dark: #FFFFFF;
    --text-light: #98989D;
    --bg-light: #e5e5eb;
    --white: #fef9f9;
    --success: #32D74B;
    --error: #FF453A;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}
body.dark-mode {
    background: linear-gradient(135deg, #0A1929 0%, #1A2332 100%);
    color: #E5E7EB;
}


body.dark-mode header {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.8) 0%, rgba(26, 35, 50, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(10, 122, 255, 0.1);
    border-bottom: 1px solid rgba(10, 122, 255, 0.1);
}

body.dark-mode .modal-content {
    background-color: #1C1C1E;
    color: #FFFFFF;
}

body.dark-mode .modal-header {
    background: linear-gradient(135deg, #0A84FF, #64D2FF);
}

body.dark-mode .mockup-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-card,
body.dark-mode .feature-card {
    background: #1C1C1E;
    border: 1px solid #2C2C2E;
}

/* Keep phone screen always light with dark text - even in dark mode */
body.dark-mode .phone-screen {
background: #FFFFFF !important;
}

body.dark-mode .screen-content {
background: #FFFFFF !important;
}

body.dark-mode .screen-time {
color: #6E6E73 !important;
}

body.dark-mode .screen-title {
color: #1D1D1F !important;
}

body.dark-mode .screen-subtitle {
color: #007AFF !important;
}

body.dark-mode .task-item {
background: #F5F7FA !important;
}

body.dark-mode .task-text {
color: #1D1D1F !important;
}

body.dark-mode .task-checkbox {
border-color: #007AFF !important;
}

body.dark-mode .screen-header {
border-bottom: 1px solid #E5E5EA !important;
}


body.dark-mode .phone-showcase {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

body.dark-mode .showcase-content h2 {
    color: #FFFFFF !important;
}

body.dark-mode .showcase-content p {
    color: #98989D !important;
}

body.dark-mode .feature-list li {
    color: #FFFFFF !important;
    border-bottom: 1px solid #3A3A3C;
}

body.dark-mode .feature-list li::before {
    color: var(--success) !important;
}


body.dark-mode .pricing-section,
body.dark-mode .roadmap-section,
body.dark-mode .testimonials-section,
body.dark-mode .theme-preview-section {
    background: #080101;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background: #2C2C2E;
    border-color: #3A3A3C;
    color: #FFFFFF;
}

body.dark-mode .success-message {
    background: #1C1C1E;
    border: 1px solid #2C2C2E;
}

body.dark-mode .meta-info,
body.dark-mode .info-box {
    background: #2C2C2E;
    border-color: var(--primary-color);
}

body.dark-mode .task-item {
    background: #2C2C2E;
}

body.dark-mode footer {
    background: #1C1C1E;
    border-top: 1px solid #2C2C2E;
}

body.dark-mode .waitlist-form input {
    background: #2C2C2E;
    color: #FFFFFF;
    border: 2px solid #3A3A3C;
}

body.dark-mode .nav-links {
    background: transparent;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #FFFFFF;
}

body.dark-mode .roadmap-item h4,
body.dark-mode .roadmap-item p {
    color: #FFFFFF;
}

body.dark-mode .roadmap-item p {
    color: #98989D;
}

body.dark-mode .section-header h2,
body.dark-mode .section-header p {
    color: #FFFFFF;
}

body.dark-mode .section-header p {
    color: #98989D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-content.small {
    max-width: 600px;
}

.modal-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0;
}

.close {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    color: var(--text-dark);
}

.modal-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 12px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.modal-body ul {
    margin: 16px 0 16px 30px;
}

.modal-body ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.meta-info {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-form, .help-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--error);
    margin-left: 4px;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

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

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease-out;
    margin-top: 16px;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Success Message Styles */
.success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 100001;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success), #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-message .btn-close {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.success-message .btn-close:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.success-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100000;
}

.success-backdrop.show {
    display: block;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.loading-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-error {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    text-align: center;
}

.form-error.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 /* Navigation base styles */

/* Logo styles */
nav img {
max-width: 160px;
height: auto;
filter: invert(1) brightness(0);
transition: transform 0.3s; /* Moved transition here */
}

/* Logo hover effect */
nav img:hover {
transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 16px;
    list-style: none;
    align-items: center;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.nav-links button {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 4px;
}

.nav-links a:hover,
.nav-links button:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    padding: 12px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.1em;
    padding: 8px 20px 4px;
    margin-bottom: 4px;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu ul li {
    padding: 0;
}

.dropdown-menu ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu ul li a:hover {
    background: rgba(0, 122, 255, 0.08);
    color: var(--primary-color);
}

body.dark-mode .dropdown-menu {
    background: #1e1e2e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body.dark-mode .dropdown-menu ul li a {
    color: #e0e0e0;
}

body.dark-mode .dropdown-menu ul li a:hover {
    background: rgba(0, 122, 255, 0.15);
    color: var(--primary-color);
}

/* Nav CTA Button - Join the Moment - Less Rounded Corners */
a.nav-cta,
.nav-cta {
background: #1a8fff !important;
color: white !important;
padding: 11px 35px !important;
border-radius: 12px !important;
transition: all 0.3s ease !important;
font-weight: 600 !important;
font-size: 1rem !important;
border: none !important;
box-shadow: none !important;
letter-spacing: 0.02em !important;
white-space: nowrap !important;
text-decoration: none !important;
display: inline-block !important;
}

a.nav-cta:hover,
.nav-cta:hover {
background: #0d7ae5 !important;
transform: translateY(-1px) !important;
box-shadow: 0 3px 10px rgba(26, 143, 255, 0.25) !important;
color: white !important;
}

/* Theme Toggle Button - Less Rounded Corners */
button.theme-toggle,
.theme-toggle {
background: transparent !important;
color: #1a8fff !important;
width: 52px !important;
height: 52px !important;
min-width: 52px !important;
min-height: 52px !important;
border-radius: 12px !important;
border: 2.5px solid #1a8fff !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 1.3rem !important;
margin-left: 16px !important;
padding: 0 !important;
box-shadow: none !important;
flex-shrink: 0 !important;
}

button.theme-toggle:hover,
.theme-toggle:hover {
background: rgba(26, 143, 255, 0.1) !important;
transform: translateY(-1px) !important;
box-shadow: 0 3px 10px rgba(26, 143, 255, 0.15) !important;
}

.theme-toggle i {
transition: transform 0.4s ease !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

.theme-toggle:active i {
transform: rotate(180deg) !important;
}

/* Dark mode overrides */
body.dark-mode a.nav-cta,
body.dark-mode .nav-cta {
background: #1a8fff !important;
color: white !important;
}

body.dark-mode a.nav-cta:hover,
body.dark-mode .nav-cta:hover {
background: #0d7ae5 !important;
color: white !important;
}

body.dark-mode button.theme-toggle,
body.dark-mode .theme-toggle {
background: transparent !important;
border-color: #1a8fff !important;
color: #1a8fff !important;
}

body.dark-mode button.theme-toggle:hover,
body.dark-mode .theme-toggle:hover {
background: rgba(26, 143, 255, 0.1) !important;
}


/* Hide menu toggle by default (desktop) */
.menu-toggle {
display: none;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
.menu-toggle {
display: block;
background: none;
border: none;
color: var(--text-dark);
font-size: 1.5rem;
cursor: pointer;
padding: 8px;
}

body.dark-mode .menu-toggle {
color: white;
}

.nav-links {
display: none;
position: absolute;
top: 100%;
right: 0;
background: white;
flex-direction: column;
width: 250px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
border-radius: 12px;
padding: 16px;
margin-top: 10px;
z-index: 1000;
}

.nav-links.active {
display: flex;
}

.dropdown-menu {
position: static;
box-shadow: none;
padding-left: 16px;
margin-top: 8px;
}

body.dark-mode .nav-links {
background: #1e1e2e;
}
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

/* App Preview Mockup Section */
.mockup-section {
    padding: 0 20px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.mockup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mockup-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

body.dark-mode .mockup-card {
    background: #1C1C1E;
    border: 1px solid #2C2C2E;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .mockup-card:hover {
    box-shadow: 0 20px 60px rgba(10, 132, 255, 0.3);
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mockup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.25);
}

.mockup-card:hover::before {
    transform: scaleX(1);
}

.mockup-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.mockup-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.mockup-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Section */
.features-showcase {
max-width: 1400px;
margin: 80px auto;
padding: 0 20px;
position: relative;
z-index: 5;
}

.section-header-features {
text-align: center;
margin-bottom: 60px;
}

.section-header-features h2 {
font-size: clamp(2rem, 4vw, 3rem);
color: var(--text-dark);
margin-bottom: 16px;
font-weight: 800;
}

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

.feature-cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 40px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.feature-card {
background: #FFFFFF;
padding: 28px 24px;
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 122, 255, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
position: relative;
cursor: pointer;
z-index: 1;
min-height: 170px;
display: flex;
flex-direction: column;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0, 122, 255, 0.2);
border-color: rgba(0, 122, 255, 0.3);
z-index: 1000;
}

body.dark-mode .feature-card {
background: linear-gradient(135deg, #34328c 0%, #3b65c9 60%, #7d3fc0 100%);
border: 1px solid #2C2C2E;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
color: #fff;
}

body.dark-mode .unlock-card {
background: linear-gradient(135deg, #1976d2 0%, #21c3fc 100%);
color: #fff;
}

body.dark-mode .feature-card:hover {
box-shadow: 0 12px 40px rgba(10, 132, 255, 0.3);
border-color: rgba(10, 132, 255, 0.5);
}

.feature-card-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin-bottom: 16px;
box-shadow: 0 6px 14px rgba(0, 122, 255, 0.3);
transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-icon {
transform: scale(1.05);
}

.feature-card h3 {
font-size: 1.25rem;
color: var(--text-dark);
margin-bottom: 8px;
font-weight: 700;
transition: color 0.3s ease;
}

body.dark-mode .feature-card h3 {
color: #FFFFFF;
}

body.dark-mode .feature-card:hover h3 {
color: #FFFFFF;
}

body.dark-mode .feature-card-subtitle {
color: #B8B8BD;
}

.feature-card:hover h3 {
color: var(--primary-color);
}

.feature-card-subtitle {
font-size: 0.9rem;
color: var(--text-light);
font-style: italic;
font-weight: 500;
}

.feature-tooltip {
visibility: hidden;
opacity: 0;
position: fixed;
z-index: 10000;
background: linear-gradient(145deg, #1f2937, #111827);
color: #FFFFFF;
padding: 28px;
border-radius: 16px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
width: 400px;
max-width: 90vw;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.95);
transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
font-size: 0.95rem;
line-height: 1.7;
pointer-events: none;
}

.feature-card:hover .feature-tooltip {
visibility: visible;
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}

.tooltip-backdrop {
visibility: hidden;
opacity: 0;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 9999;
transition: opacity 0.25s ease;
}

.feature-card:hover .tooltip-backdrop {
visibility: visible;
opacity: 1;
}

.feature-tooltip h4 {
font-size: 1.4rem;
margin-bottom: 16px;
color: #5EA8FF;
font-weight: 700;
border-bottom: 2px solid rgba(0, 122, 255, 0.3);
padding-bottom: 12px;
text-align: center;
}

.feature-tooltip ul {
list-style: none;
margin-top: 14px;
max-height: 60vh;
overflow-y: auto;
padding: 0;
}

.feature-tooltip ul li {
padding: 10px 0;
padding-left: 28px;
position: relative;
text-align: left;
}

.feature-tooltip ul li::before {
content: '✓';
position: absolute;
left: 0;
color: #5EA8FF;
font-weight: bold;
font-size: 1.1rem;
}

.feature-tooltip strong {
color: #5EA8FF;
}

/* Unlock card - same size as other cards */
.unlock-card {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
cursor: pointer;
padding: 28px 24px;
min-height: 170px;
}

.unlock-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 45px rgba(0, 122, 255, 0.4);
}

.unlock-card .feature-card-icon {
background: rgba(255, 255, 255, 0.2);
font-size: 1.8rem;
width: 56px;
height: 56px;
margin-bottom: 16px;
}

.unlock-card h3 {
color: white;
font-size: 1.25rem;
margin-bottom: 12px;
font-weight: 700;
}

.unlock-card p {
color: rgba(255, 255, 255, 0.95);
font-size: 0.88rem;
line-height: 1.6;
text-align: center;
}

section {
padding: 100px 20px;
}

.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 80px;
}

.section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
color: var(--text-dark);
margin-bottom: 20px;
font-weight: 800;
letter-spacing: -0.02em;
}

.section-header p {
font-size: 1.2rem;
color: var(--text-light);
line-height: 1.7;
}

/* Pricing Cards - Reduced hover effects */
.pricing-card.featured:hover {
transform: translateY(-6px) scale(1.02);
box-shadow: 0 18px 45px rgba(0, 122, 255, 0.4);
}

/* Dark mode - Base styles */
body.dark-mode .pricing-card {
background: linear-gradient(145deg, #1C1C1E, #2C2C2E);
box-shadow: 0 8px 25px rgba(10, 132, 255, 0.2);
}

/* Dark mode - Featured card moderately bright */
body.dark-mode .pricing-card.featured {
box-shadow: 0 12px 40px rgba(10, 132, 255, 0.35);
border-color: var(--primary-color);
}

/* Dark mode - All cards pop on hover */
body.dark-mode .pricing-card:hover {
box-shadow: 0 16px 45px rgba(10, 132, 255, 0.4);
transform: translateY(-6px) scale(1.01);
}

/* Dark mode - Featured card pops more on hover */
body.dark-mode .pricing-card.featured:hover {
box-shadow: 0 20px 50px rgba(10, 132, 255, 0.5);
transform: translateY(-6px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
.feature-cards-grid {
grid-template-columns: repeat(2, 1fr);
max-width: 900px;
}
}

@media (max-width: 640px) {
.feature-cards-grid {
grid-template-columns: 1fr;
max-width: 500px;
}

.feature-card {
padding: 24px 20px;
}

.feature-tooltip {
width: calc(100% - 48px);
}
}


/* Phone Mockup Section */
.phone-showcase {
    background: linear-gradient(135deg, #F5F7FA 0%, #E5E9F2 100%);
    padding: 100px 20px;
}

.showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    aspect-ratio: 9/18;            /* Slightly taller than 9/16 */
    background: #1D1D1F;
    border-radius: 50px;
    padding: 14px;                 /* Good visual padding */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

/* Keep phone screen content always light */
body.dark-mode .phone-screen {
    background: white !important;
}

body.dark-mode .screen-content {
    background: white !important;
}


.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;                  /* Full width notch */
    height: 30px;                  /* Full height notch */
    background: #1D1D1F;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.screen-content {
    padding: 50px 20px 20px;
}

.screen-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5EA;
}

.screen-time {
    font-size: 0.75rem;
    color: #6E6E73 !important;
    font-weight: 600;
}

.screen-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1D1D1F !important;
    margin: 8px 0;
}

.screen-subtitle {
    font-size: 1rem;
    color: #007AFF !important;
    font-weight: 600;
}


.screen-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 8px 0;
}

.screen-subtitle {
    font-size: 1rem;
    color: #007AFF;
    font-weight: 600;
}

.task-list {
    padding: 0 16px;
}

.task-item {
    background: #F5F7FA;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.task-item:hover {
    background: #E8F4FF;
}

.task-checkbox {
    width: 24px;
    height: 24px;
    border: 2.5px solid #007AFF;
    border-radius: 50%;
    flex-shrink: 0;
}

.task-text {
    font-size: 0.95rem;
    color: #1D1D1F !important;
    flex: 1;
}


.showcase-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.showcase-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid #E5E5EA;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1.4rem;
}

.roadmap-section {
    background: white;
    padding: 100px 20px;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 80px;
}

.roadmap-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.roadmap-header h2::before {
    content: '➕';
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.roadmap-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0 100px;
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 150px;
    column-gap: 40px;
    position: relative;
    padding: 50px 0;
}

/* Top row line - connects through center of circles */
.roadmap-items::before {
content: '';
position: absolute;
top: 70px;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, transparent 0%, transparent 16.66%, #34C759 16.66%, #007AFF 83.33%, transparent 83.33%, transparent 100%);
z-index: 0;
}
/* Bottom row line - connects through center of circles */
.roadmap-items::after {
content: '';
position: absolute;
bottom: 155px;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, transparent 0%, transparent 16.66%, #007AFF 16.66%, #007AFF 83.33%, transparent 83.33%, transparent 100%);
z-index: 0;
}

.roadmap-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #007AFF;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.roadmap-marker.completed {
    background: #34C759;
    border-color: #34C759;
}

.roadmap-marker.completed::after {
    content: '✓';
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.roadmap-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.roadmap-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mobile */
@media (max-width: 768px) {
    .roadmap-items {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .roadmap-items::before,
    .roadmap-items::after {
        display: none;
    }
}



/* Dark mode adjustments */
body.dark-mode .roadmap-items::before,
body.dark-mode .roadmap-items::after {
opacity: 0.8;
}

body.dark-mode .roadmap-item::after {
opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* Pricing Cards - Base styles */
.pricing-card {
background: white;
border-radius: 24px;
padding: 48px 40px;
box-shadow: 0 6px 20px rgba(0, 122, 255, 0.12);
transition: var(--transition);
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

/* Featured card (center) - Moderately bright */
.pricing-card.featured {
border-color: var(--primary-color);
transform: scale(1.05);
box-shadow: 0 10px 35px rgba(0, 122, 255, 0.25);
}

/* All cards pop on hover */
.pricing-card:hover {
transform: translateY(-10px) scale(1.03);
box-shadow: 0 20px 50px rgba(0, 122, 255, 0.4);
border-color: var(--primary-color);
}

/* Featured card pops even more on hover */
.pricing-card.featured:hover {
transform: translateY(-10px) scale(1.08);
box-shadow: 0 24px 60px rgba(0, 122, 255, 0.5);
}

/* Dark mode - Base styles */
body.dark-mode .pricing-card {
background: linear-gradient(145deg, #1C1C1E, #2C2C2E);
box-shadow: 0 8px 25px rgba(10, 132, 255, 0.2);
}

/* Dark mode - Featured card moderately bright */
body.dark-mode .pricing-card.featured {
box-shadow: 0 12px 40px rgba(10, 132, 255, 0.35);
border-color: var(--primary-color);
}

/* Dark mode - All cards pop on hover */
body.dark-mode .pricing-card:hover {
box-shadow: 0 20px 55px rgba(10, 132, 255, 0.5);
transform: translateY(-10px) scale(1.03);
}

/* Dark mode - Featured card pops more on hover */
body.dark-mode .pricing-card.featured:hover {
box-shadow: 0 26px 65px rgba(10, 132, 255, 0.65);
transform: translateY(-10px) scale(1.08);
}


.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
body.dark-mode .plan-name,
body.dark-mode .plan-features li {
    color: #FFFFFF;
}

body.dark-mode .plan-description {
    color: #98989D;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin: 32px 0;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}


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

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

.plan-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.plan-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.testimonial-card {
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

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

body.dark-mode .testimonial-card {
    background: linear-gradient(145deg, #1C1C1E, #2C2C2E);
    box-shadow: 0 4px 16px rgba(10, 132, 255, 0.15);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.3);
    border-left-color: var(--primary-color);
}


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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-weight: 600;
}
body.dark-mode .testimonial-info h4,
body.dark-mode .testimonial-text {
    color: #FFFFFF;
}

body.dark-mode .testimonial-info p {
    color: #98989D;
}

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

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.15;
}

/* Theme Preview Section */
.theme-preview-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.preview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

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

.theme-previews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}


.theme-preview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid transparent;
}

.theme-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.3);
}

.theme-preview-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2);
}

.preview-label {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.preview-mockup {
    padding: 40px;
    min-height: 400px;
}

.preview-mockup.light-preview {
    background: #FFFFFF;
    color: #1D1D1F;
}

.preview-mockup.dark-preview {
    background: #000000;
    color: #FFFFFF;
}

.preview-content {
    max-width: 500px;
    margin: 0 auto;
}

.preview-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.light-preview h3 {
    color: #1D1D1F;
}

.dark-preview h3 {
    color: #FFFFFF;
}

.preview-content p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.light-preview p {
    color: #6E6E73;
}

.dark-preview p {
    color: #98989D;
}

.preview-card-sample {
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dark-preview .preview-card-sample {
    background: #1C1C1E;
    border: 1px solid #2C2C2E;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.preview-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.light-preview .preview-button {
    background: #007AFF;
    color: white;
}

.dark-preview .preview-button {
    background: #0A84FF;
    color: white;
}

.preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #FFFFFF;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1D1D1F;
}

.waitlist-form button {
    padding: 18px 36px;
    background: #1D1D1F;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.waitlist-form button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.waitlist-form button.loading .loading-spinner {
    display: block;
}

.waitlist-form button.loading i.fa-paper-plane {
    display: none;
}

ter */
footer {
    background: var(--text-dark);
    color: #FFFFFF;
    padding: 40px 20px 20px;
}

body.dark-mode footer {
    background: #000000fe;
    color: #FFFFFF;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
 background: #18171700;  

  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .faq-header h1 {
    font-size: 2.5rem;
    color: #800080;
    background: linear-gradient(90deg, #6A359C, #804FB3, #B589D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
  }
  
  
  .faq-header p {
    font-size: 1.1rem;
    color: #82b1ff; /* Light blue */
  }
  
  .faq-item {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(33, 195, 252, 0.9));
    border: 1px solid rgba(9, 9, 9, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
  }
  
  .faq-item:hover {
    border-color: rgba(21, 96, 170, 0.6);
    box-shadow: 0 12px 36px rgba(33, 150, 243, 0.5);
  }
  
  .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  
  .faq-question h3 {
    font-size: 1.15rem;
    color: #e1f5fe;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
    text-shadow: 0 0 6px rgba(33, 150, 243, 0.7);
  }
  
  .faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aeeda;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    text-shadow: 0 0 6px #64ffda;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.5), rgba(33, 195, 252, 0.6));
    box-shadow: inset 0 0 20px rgba(33, 150, 243, 0.3);
    border-radius: 0 0 12px 12px;
  }
  
  .faq-item.active .faq-answer {
    padding: 25px 30px;
  }
  
  .faq-answer p {
    color: #e3f2fd;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 0 0 8px #2196f3aa;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .faq-header h1 {
      font-size: 2rem;
    }
  
    .faq-question {
      padding: 20px;
    }
  
    .faq-question h3 {
      font-size: 1rem;
    }
  
    .faq-item.active .faq-answer {
      padding: 20px;
    }
  
    .faq-answer p {
      font-size: 0.95rem;
    }
  }
  

/* Footer - Light Mode Styles */
.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 40px 30px;
}

.footer-grid {
display: flex;
justify-content: space-between;
gap: 50px;
margin-bottom: 30px;
flex-wrap: nowrap;
}

.footer-section {
flex: 0 1 auto;
min-width: 0;
}

.footer-section h3 {
color: var(--text-dark);
font-size: 1.15rem;
margin-bottom: 18px;
position: relative;
padding-bottom: 10px;
font-weight: 700;
white-space: nowrap;
}

.footer-section h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 45px;
height: 3px;
background: var(--primary-color);
}

.social-section h3::after {
left: 0;
}

.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
padding: 0;
margin: 0;
}

.footer-links a {
color: var(--text-light);
text-decoration: none;
transition: var(--transition);
cursor: pointer;
font-size: 0.95rem;
line-height: 1.5;
white-space: nowrap;
}

.footer-links a:hover {
color: var(--primary-color);
padding-left: 5px;
}

.social-links {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
max-width: 180px;
}

.social-link {
width: 46px;
height: 46px;
background: rgba(0, 122, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: var(--primary-color);
transition: var(--transition);
font-size: 1.15rem;
}

.social-link:hover {
transform: translateY(-3px);
color: #FFFFFF;
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.linkedin:hover { background: #0077b5; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.github:hover { background: #333; }
.social-link.youtube:hover { background: #ff0000; }

.footer-bottom {
margin-top: 40px;
padding-top: 25px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.copyright {
color: var(--text-light);
font-size: 0.95rem;
}

.beta-badge {
display: inline-block;
background: var(--accent-color);
color: #FFFFFF;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-left: 12px;
}

.powered-by {
color: var(--text-light);
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 8px;
}

.powered-by a {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}

.powered-by a:hover {
color: var(--primary-dark);
text-decoration: underline;
}

/* Footer - Dark Mode Overrides */
body.dark-mode .footer-section h3 {
color: #FFFFFF;
}

body.dark-mode .footer-links a {
color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer-links a:hover {
color: var(--primary-light);
}

body.dark-mode .social-link {
background: rgba(255, 255, 255, 0.1);
color: #FFFFFF;
}

body.dark-mode .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.dark-mode .copyright {
color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .powered-by {
color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .powered-by a {
color: var(--primary-light);
}

body.dark-mode .powered-by a:hover {
color: #FFFFFF;
}

/* Animations */
.scroll-animate {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.active {
opacity: 1;
transform: translateY(0);
}

.scroll-animate-left {
opacity: 0;
transform: translateX(-30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-left.active {
opacity: 1;
transform: translateX(0);
}

.scroll-animate-right {
opacity: 0;
transform: translateX(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-right.active {
opacity: 1;
transform: translateX(0);
}

.scroll-animate-scale {
opacity: 0;
transform: scale(0.95);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-scale.active {
opacity: 1;
transform: scale(1);
}

/* Responsive */
@media (max-width: 1300px) {
.footer-grid {
gap: 35px;
}

.footer-links a {
font-size: 0.9rem;
}
}

@media (max-width: 1100px) {
.footer-grid {
flex-wrap: wrap;
gap: 40px;
}
}

@media (max-width: 968px) {
.footer-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
}

@media (max-width: 600px) {
.footer-grid {
grid-template-columns: 1fr;
gap: 35px;
}

.social-links {
justify-items: center;
margin: 0 auto;
}

section {
padding: 60px 20px;
}

.footer-grid {
grid-template-columns: 1fr;
text-align: center;
}

.footer-section h3::after {
left: 50%;
transform: translateX(-50%);
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.modal-content {
width: 95%;
margin: 5% auto;
}

.modal-header {
padding: 20px;
}

.modal-header h2 {
font-size: 1.5rem;
}

.modal-body {
padding: 24px;
}

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

.feature-tooltip {
width: calc(100vw - 30px);
}

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

@media (max-width: 640px) {
.feature-cards-grid {
grid-template-columns: 1fr;
}

.mockup-container,
.pricing-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}

.cta-group {
flex-direction: column;
}

.btn {
width: 100%;
justify-content: center;
}
}

@media (max-width: 968px) {
.theme-previews {
grid-template-columns: 1fr;
}

.theme-toggle {
width: auto;
justify-content: center;
padding: 10px;
border-radius: 10px;
gap: 0;
}
}

    
    @media (max-width: 968px) {
        .theme-toggle {
            width: auto;
            justify-content: center;
            padding: 10px;
            border-radius: 10px;
            gap: 0;
        }
    }
    

@media (max-width: 640px) {
    .mockup-container,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

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

    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}
/* Tablet view (width <= 1024px) adjustments */
@media (max-width: 1024px) {
  .header-nav {
    padding: 0 1rem;
  }
  .nav-links {
    gap: 1.8rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .content-section {
    padding: 1rem 1.2rem 2rem;
    max-width: 720px;
  }
  ul {
    max-width: 600px;
    font-size: 1.06rem;
    padding: 1.8rem 1.2rem;
  }
}

/* Mobile view (width <= 650px) adjustments */
@media (max-width: 650px) {
  .header-nav {
    flex-direction: column;
    align-items: stretch;
  }

  /*
   * Show hamburger toggle and hide nav links initially
   */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.8rem;
    position: absolute;
    top: 56px;
    right: 18px;
    background: linear-gradient(90deg, #0052cc 60%, #0073e6 100%);
    border-radius: 14px;
    padding: 1.4rem 0.8rem;
    box-shadow: 0 0 14px #3338;
    transition: all 0.25s ease;
    opacity: 0;
    pointer-events: none;
    max-width: 80vw;
    z-index: 1000;
  }

  /*
   * Show nav menu when open class applied
   */
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  /*
   * Make dropdown menu static and without shadow on mobile
   */
  .dropdown {
    position: static;
    border-radius: 0;
    box-shadow: none;
    background: #f0f6ff;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .dropdown a {
    color: #0052cc;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .has-dropdown > a::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  /*
   * Rotate arrow on open dropdown mobile
   */
  .dropdown.open + a::after,
  .has-dropdown.open > a::after {
    transform: rotate(180deg);
  }

  /* Hero content font sizes */
  .hero-content h1 {
    font-size: 1.6rem;
  }

  /* Padding adjustments */
  .content-section {
    padding: 1rem 1rem 2rem;
  }

  ul {
    max-width: 100%;
    font-size: 1rem;
    padding: 1.4rem 1rem;
  }
}
