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

:root {
    --background: 210, 60%, 12%;
    --foreground: 210, 30%, 93%;
    --card: 0, 0%, 100%;
    --card-foreground: 210, 13%, 18%;
    --primary: 180, 65%, 52%;
    --primary-foreground: 0, 0%, 100%;
    --primary-hover: 183, 70%, 66%;
    --secondary: 210, 30%, 93%;
    --secondary-foreground: 210, 13%, 18%;
    --muted: 210, 30%, 93%;
    --muted-foreground: 210, 12%, 65%;
    --accent: 210, 30%, 93%;
    --accent-foreground: 180, 65%, 52%;
    --border: 180, 65%, 52%;
    --radius: 0.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
header {
    border-bottom: 1px solid rgba(230, 237, 243, 0.1);
    background-color: rgba(11, 28, 45, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #E6EDF3;
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-box {
    width: 2rem;
    height: 2rem;
    background-color: #E6EDF3;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Nunito', 'Fredoka', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #E6EDF3;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #E6EDF3;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-family: 'Nunito', 'Fredoka', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #2f96d6;
    color: #FFFFFF;
    padding: 0.625rem 1.5rem;
}

.btn-primary:hover {
    background-color: #5ca8e6;
}

.btn-outline {
    border: 1px solid #5ca8e6;
    background-color: transparent;
    color: #5ca8e6;
    padding: 0.625rem 1.5rem;
}

.btn-outline:hover {
    background-color: rgba(47, 214, 214, 0.1);
    color: #5ca8e6;
    border-color: #5ca8e6;
}

.btn-ghost {
    padding: 0.625rem 1.5rem;
    color: #E6EDF3;
    background-color: transparent;
}

.btn-ghost:hover {
    background-color: rgba(47, 214, 214, 0.1);
    color: #E6EDF3;
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    font-family: 'Nunito', 'Fredoka', sans-serif;
    border-radius: 9999px;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: colors 0.2s;
}

.badge-secondary {
    background-color: #2f96d6;
    color: #0B1C2D;
}

.badge-outline {
    border: 1px solid #2f96d6;
}

/* Card */
.card {
    border-radius: 0.5rem;
    border: 1px solid rgba(230, 237, 243, 0.3);
    background-color: #FFFFFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-no-border {
    border: none;
}

/* Hero Section */
.hero {
    padding: 3rem 1rem 2rem;
    text-align: center;
    background: transparent;
}

.hero-banner-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.banner-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.banner-img-1 {
    transform: rotate(-5deg);
}

.banner-img-2 {
    transform: rotate(3deg);
}

.banner-img-3 {
    transform: rotate(-2deg);
}

.banner-img:hover {
    transform: scale(1.05) rotate(0deg);
}

.hero-title {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: none;
}

.hero-tagline {
    font-family: 'Nunito', 'Fredoka', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #E6EDF3;
    max-width: 48rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-tagline strong {
    color: #5ca8e6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-banner-images {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .banner-img {
        max-width: 250px;
    }
    
    .banner-img-1 {
        transform: rotate(-3deg);
    }
    
    .banner-img-2 {
        transform: rotate(2deg);
    }
    
    .banner-img-3 {
        transform: rotate(-1deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Hero Subsection */
.hero-subsection {
    padding: 2rem 1rem;
    text-align: center;
    background: #E6EDF3;
}

.hero-subsection .hero-subtitle {
    color: #0B1C2D;
}

.hero-subsection .trust-indicators {
    color: #0B1C2D;
}

.hero-content {
    position: relative;
    z-index: 10;
}

h1 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

h2 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

h4 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
}

.hero-subtitle {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #E6EDF3;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* How It Works Section */
.how-it-works-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

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

.how-it-works-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #2f96d6;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0B1C2D;
}

.step-content p {
    color: #0B1C2D;
    line-height: 1.6;
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.trust-badge-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge-item h4 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.trust-badge-item p {
    color: #9AA7B2;
    font-size: 0.875rem;
}

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

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

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

.testimonial-card {
    padding: 2rem;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #0B1C2D;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #0B1C2D;
    font-family: 'Fredoka', 'Nunito', sans-serif;
}

.testimonial-author span {
    color: #9AA7B2;
    font-size: 0.875rem;
}

/* User Stories */
.user-stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.user-story-card {
    padding: 2rem;
    text-align: center;
}

.user-story-icon {
    margin-bottom: 1rem;
}

.user-story-card h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0B1C2D;
}

.user-story-card p {
    color: #0B1C2D;
    line-height: 1.6;
}

/* Video Tour */
.video-tour-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.video-tour-card {
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #0B1C2D 0%, #1a2f42 100%);
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(47, 214, 214, 0.3);
}

.video-placeholder p {
    color: #E6EDF3;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.video-tour-card h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0B1C2D;
}

.video-tour-card p {
    color: #0B1C2D;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background-color: #0B1C2D;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.875rem;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #0B1C2D;
    color: #0B1C2D;
    font-size: 0.875rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #F8F9FA;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #0B1C2D;
}

.comparison-table td:nth-child(2) {
    color: #0B1C2D;
    font-weight: 500;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    color: #0B1C2D;
}

/* Educational Cards */
.educational-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.educational-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.educational-icon {
    margin-bottom: 1rem;
}

.educational-card h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0B1C2D;
}

.educational-card p {
    color: #0B1C2D;
    line-height: 1.6;
    flex: 1;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    font-family: 'Fredoka', 'Nunito', sans-serif;
    color: #E6EDF3;
    margin-bottom: 2rem;
    text-shadow: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.icon-check {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #E6EDF3;
}

/* Sections */
section {
    padding: 5rem 1rem;
}

.section-bg {
    background-color: #E6EDF3;
}

.section-bg h2 {
    color: #0B1C2D;
}

.section-bg .section-subtitle {
    color: #0B1C2D;
}

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

.section-title h2 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
}

.section-subtitle {
    font-family: 'Nunito', 'Fredoka', sans-serif;
    color: #9AA7B2;
    max-width: 42rem;
    margin: 0 auto;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

/* Feature Card */
.feature-card {
    padding: 1.5rem;
}

.feature-card h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    color: #0B1C2D;
}

.feature-card p {
    color: #0B1C2D;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(47, 214, 214, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2f96d6;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Badge Grid */
.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Pricing Cards */
.pricing-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card h3 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    color: #0B1C2D;
}

.pricing-card {
    color: #0B1C2D;
}

.pricing-card.popular {
    outline: 2px solid #E6EDF3;
    transform: scale(1.05);
}

.pricing-price {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
}

.pricing-storage {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.pricing-features svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: #22c55e;
}

.pricing-card .btn {
    margin-top: auto;
}

/* FAQ */
.faq-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-question {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0B1C2D;
}

.faq-answer {
    color: #0B1C2D;
}

/* Collapsible styling only for FAQ items */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0.75rem;
}

.faq-item .faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-item .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* Footer */
footer {
    border-top: 1px solid rgba(230, 237, 243, 0.1);
    padding: 3rem 1rem;
}

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

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

.footer-column h4 {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #9AA7B2;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

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

.footer-bottom-links a {
    font-size: 0.875rem;
    color: #9AA7B2;
    text-decoration: none;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Icons */
svg {
    display: block;
}

/* Community Section */
.community {
    text-align: center;
}

.community-title {
    margin-bottom: 1rem;
}

.community-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.community-badges svg {
    width: 1.25rem;
    height: 1.25rem;
}

.community-subtitle {
    font-size: 1.125rem;
    color: #9AA7B2;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Memories Section */
.memories-section {
    position: relative;
    overflow: hidden;
}

.memories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(47, 214, 214, 0.1), rgba(47, 214, 214, 0.1));
    pointer-events: none;
}

.memories-title {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.memories-title .highlight {
    color: #E6EDF3;
}

.memories-section .section-subtitle {
    color: #E6EDF3;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

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

