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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #2d3436;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* Custom cursor */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}

.cursor-hover .cursor-outline {
    width: 70px;
    height: 70px;
    border-color: rgba(108, 92, 231, 0.5);
    background-color: rgba(108, 92, 231, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: #fffffff2;
    box-shadow: 0 4px 30px #0000001a;
}

.logo {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.nav-link {
    color: #2d3436;
}

.nav-link:hover {
    color: #6c5ce7;
}

.get-started-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.315);
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.3));
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
}

/* Dashboard Section */
.dashboard-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d3436;
}

.dashboard-label {
    background: rgb(108 92 231);
    color: #6c5ce7;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.dashboard-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.dashboard-feature:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d3436;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.15);
/* Scroll Cards */
.notes-container {
display: flex;
gap: 1rem;
padding: 2rem;
overflow-x: auto;
scroll-behavior: smooth;
}

.scroll-card {
min-width: 250px;
padding: 1.5rem;
border-radius: 1rem;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border: 1px solid rgba(108, 92, 231, 0.1);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.scroll-card:hover {
transform: translateY(-5px);
border-color: rgba(108, 92, 231, 0.3);
box-shadow: 0 8px 40px rgba(108, 92, 231, 0.15);
}

.scroll-card h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.75rem;
color: #2d3436;
}

.scroll-card p {
color: #6c757d;
margin-bottom: 1rem;
}
    color: #2d3436;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.stars i {
    color: #A7C7E7;
    font-size: 1.25rem;
}

.author-avatar {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d3436;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border-color: #6c5ce7;
}

.popular-tag {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
}

.pricing-btn.outline {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: #6c5ce7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d3436;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.footer-logo .logo {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.social-link {
    color: #6c5ce7;
}

.footer-column a {
    color: #2d3436;
}

.footer-column a:hover {
    color: #6c5ce7;
}

.subscribe-form input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.subscribe-form button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #ffffff;
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    height: 3rem;
    width: 3rem;
    background-color: #A7C7E7;
    color: #000000;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

/* Scroll progress indicator */
.scroll-progress {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Add smooth transitions */
.feature-card,
.workflow-card,
.testimonial-card,
.pricing-card,
.scroll-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add hover effects */
.feature-card:hover,
.workflow-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.scroll-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.15);
}

/* Add gradient overlays */
.feature-icon::before,
.dashboard-feature::before,
.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon:hover::before,
.dashboard-feature:hover::before,
.workflow-card:hover::before {
    opacity: 1;
}

/* Navbar */
.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo {
    height: 2.5rem;
    width: 2.5rem;
    background-color: #A7C7E7;
    border-radius: 0.5rem;
    transform: rotate(12deg);
    transition: transform 0.3s;
}

.logo-container:hover .logo {
    transform: rotate(0) scale(1.1);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #000000, #666666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #3b4fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #583bff;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.nav-link:hover::after {
    transform: translateX(0);
}

.get-started-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-started-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: #ffffff;
    padding-top: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #3b48ff;
}

.mobile-get-started-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.mobile-get-started-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Hero Section */
#page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    z-index: -1;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    scale: 0.9;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-hider {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 140px;
    background-color: #ffffff;
    z-index: -1;
}

.hero-subtitle {
    position: absolute;
    bottom: 10px;
    left: 2%;
    max-width: 600px;
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}


.hero-subtitle a {
    color: #000000;
    border: none;
    border: 2px solid #000000;
    padding: 10px 10px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    cursor: pointer;
}



.hero-subtitle a:hover {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-subtitle {
        bottom: 140px;
        left: 5%;
        max-width: 90%;
    }

    .hero-subtitle h4 {
        font-size: 1.4rem;
    }
}

.hero-subtitle-2 {
    position: absolute;
    bottom: 10px;
    right: 2%;
    max-width: 600px;
    text-align: left;
    z-index: 2;
    padding: 20px;
}

.hero-subtitle-2 h1 {
    font-size: 4.5rem;
    font-weight: 600;
    font-family: 'Dancing Script', 'Luxurious Script', cursive;
    font-style: italic;
    text-transform: capitalize;
    text-align: end;
    border-bottom: 2px solid #000000;
    color: #2d3436;
}

.hero-subtitle-2 p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    text-align: end;
    color: #2d3436;
}

/* Features Section */
.features-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    overflow: hidden;
    color: #2d3436;
}

.reveal-text {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFEB3B;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.reveal-text.revealed::after {
    transform: translateX(100%);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 48rem;
    margin: 0 auto;
    color: #2d3436;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 235, 59, 0.5);
}

.feature-icon {
    background-color: #A7C7E7;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #000000;
}

.feature-icon i {
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.feature-card p {
    color: rgba(0, 0, 0, 0.7);
}

/* Dashboard Section (New) */
.dashboard-section {
    padding: 6rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.dashboard-spheres {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
}

.sphere-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    background-color: #0059ff;
    animation: float 15s ease-in-out infinite;
}

.sphere-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    background-color: #0059ff;
    animation: float 12s ease-in-out infinite reverse;
}

.sphere-gold {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(0, 89, 255, 0.8), rgba(19, 91, 139, 0.3));
    animation: float 20s ease-in-out infinite;
}

.dashboard-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-labels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.dashboard-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
}

.dashboard-header p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 48rem;
    margin: 0 auto;
    color: #2d3436;
}

.dashboard-preview {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.dashboard-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgb(0, 38, 255);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
}

.dashboard-feature:hover {
    background-color: rgb(98, 0, 255);
    transform: translateY(-2px);
}

.dashboard-feature i {
    font-size: 1.25rem;
}

/* Workflow Section (New) */
.workflow-section {
    padding: 6rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.workflow-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.workflow-content {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

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

.workflow-header h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.workflow-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.workflow-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.workflow-card-content {
    padding: 1.5rem;
}

.workflow-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.workflow-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    color: #2d3436;
}

.workflow-image-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
}

.horizontal-scroll-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-scroll-header {
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.notes-container {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.notes-container::-webkit-scrollbar {
    display: none;
}

.scroll-card {
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.15);
}

.yellow-bg {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.2);
}

.yellow-bg:hover {
    border-color: rgba(255, 235, 59, 0.4);
}

.light-yellow-bg {
    background: rgba(255, 235, 59, 0.05);
    border-color: rgba(255, 235, 59, 0.1);
}

.light-yellow-bg:hover {
    border-color: rgba(255, 235, 59, 0.3);
}

.scroll-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.note-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note-footer span {
    font-size: 0.875rem;
    opacity: 0.7;
}

.note-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: currentColor;
}

/* Video Section */
.video-section {
    padding: 6rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 64rem;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 235, 59, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
    clip-path: inset(100% 0 0 0);
}

.video-container.visible {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0% 0 0 0);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-button {
    width: 5rem;
    height: 5rem;
    background-color: #FFEB3B;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    color: #000000;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 18px solid #000000;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.video-note {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0) rotate(var(--rotation, 0deg));
    transition: all 0.5s;
}

.video-note.visible {
    opacity: 1;
    transform: scale(1) rotate(var(--rotation, 0deg));
}

.note-content {
    padding: 0.75rem;
    font-size: 0.875rem;
}

.decorative-blob {
    position: absolute;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 235, 59, 0.1);
    border-radius: 9999px;
    filter: blur(24px);
}

.blob-1 {
    bottom: -4rem;
    left: -4rem;
}

.blob-2 {
    top: -4rem;
    right: -4rem;
}

/* Flagship Section (New) */
.flagship-section {
    background-color: #ffffff;
    color: #000000;
    position: relative;
}

.flagship-image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.flagship-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flagship-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.flagship-overlay h2 {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin: 0;
}

.flagship-btn {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
}

.flagship-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.flagship-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.flagship-location h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flagship-location address {
    font-style: normal;
    color: rgba(0, 0, 0, 0.7);
}

.flagship-links {
    display: flex;
    gap: 2rem;
}

.flagship-link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.flagship-link:hover {
    color: #FFEB3B;
}

.flagship-gallery {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.flagship-gallery h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    border-radius: 0.25rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-social-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.gallery-social-link:hover {
    color: #FFEB3B;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stars {
    display: flex;
    margin-bottom: 1rem;
}

.stars i {
    color: #A7C7E7;
    font-size: 1.25rem;
}

.testimonial-content {
    color: #000000;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    background-color: #A7C7E7;
    width: 2rem;
    height: 2rem;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 0.75rem;
    border: 2px solid #A7C7E7;
}

.author-name {
    font-weight: 500;
    color: #000000;
}

.author-role {
    font-size: 0.875rem;
    color: #000000;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.popular {
    border-color: #6c5ce7;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6c5ce7;
    color: #000000;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    padding: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.price {
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
}

.amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000000;
}

.period {
    margin-left: 0.25rem;
    color: rgba(0, 0, 0, 0.5);
}

.description {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
}

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

.pricing-features i {
    color: #6c5ce7;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-features span {
    color: rgba(0, 0, 0, 0.8);
}

.pricing-footer {
    padding: 1.5rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn.primary {
    background-color: #6c5ce7;
    color: #000000;
    border: none;
}

.pricing-btn.primary:hover {
    background-color: #a29bfe;
}

.pricing-btn.outline {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.pricing-btn.outline:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    height: 2rem;
    width: 2rem;
    background-color: #6c5ce7;
    border-radius: 0.5rem;
    transform: rotate(12deg);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
}

.footer-column p {
    color: #000000;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #000000;
    transition: color 0.3s;
}

.social-link:hover {
    color: #483bff;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3b3eff;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #3b89ff;
}

.subscribe-form button {
    background-color: #3b4fff;
    color: #000000;
    border: none;
    border-radius: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #3542fd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #000000;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    height: 3rem;
    width: 3rem;
    background-color: #A7C7E7;
    color: #000000;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3b48ff;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 50;
}

/* Magnetic button effect */
.magnetic-button {
    transition: transform 0.2s ease;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Text reveal animation */
.char-reveal {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.char-reveal.revealed {
    transform: translateY(0);
    opacity: 1;
}
