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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    color: #0a1628;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Top Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff;
    animation: fadeIn 0.6s ease-out;
}

.top-nav .nav-logo {
    height: 32px;
    width: auto;
}

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

.top-nav .nav-links a {
    color: #0a1628;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-nav .nav-links a:hover {
    color: #1a4480;
}

.top-nav .nav-links a.active {
    color: #1a4480;
}

/* Hero Section - Centered Logo */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-out, float 4s ease-in-out 1.5s infinite;
}

.app-store-badge {
    display: block;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.app-store-badge img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.app-store-badge:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
}

.footer-nav {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    margin: 0 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #0a1628;
}

.copyright {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Content Pages */
.content-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0a1628;
    animation: fadeInUp 0.8s ease-out;
}

.content-page .subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Pricing Page */
.pricing-page {
    background: #ffffff;
    flex: 1;
}

.pricing-header {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Guest Note */
.guest-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #040623;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 100px;
    max-width: fit-content;
    margin: 0 auto 3.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.guest-note-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.guest-note span {
    font-size: 0.95rem;
}

.guest-note strong {
    font-weight: 600;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    padding: 1rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: #040623;
    border: none;
    box-shadow: 0 25px 50px rgba(4, 6, 35, 0.5);
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(4, 6, 35, 0.6);
}

.pricing-card .plan-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    background: #f1f5f9;
    color: #64748b;
}

.pricing-card.featured .plan-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-card .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1rem;
}

.pricing-card.featured .plan-name {
    color: #ffffff;
}

.pricing-card .plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0a1628;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -2px;
}

.pricing-card.featured .plan-price {
    color: #ffffff;
}

.pricing-card .plan-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0;
}

.pricing-card.featured .plan-price span {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card .plan-period {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.pricing-card.featured .plan-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card .plan-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pricing-card .plan-features li {
    padding: 0.875rem 0;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.95rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card .feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card .feature-icon.included {
    background: #dcfce7;
    color: #16a34a;
}

.pricing-card .feature-icon.not-included {
    background: #f1f5f9;
    color: #cbd5e1;
}

.pricing-card.featured .feature-icon.included {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.pricing-card.featured .feature-icon.not-included {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card .feature-text {
    flex: 1;
}

.pricing-card .feature-value {
    font-weight: 600;
    color: #0a1628;
}

.pricing-card.featured .feature-value {
    color: #ffffff;
}

.pricing-card .plan-cta {
    margin-top: 2rem;
}

.pricing-card .plan-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #0a1628;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-card .plan-cta a:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.pricing-card.featured .plan-cta a {
    background: #ffffff;
    color: #0a1628;
}

.pricing-card.featured .plan-cta a:hover {
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Features Page */
.features-page {
    max-width: 1200px;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease-out;
}

.features-header p {
    font-size: 1.15rem;
    color: #64748b;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #040623;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Highlight Section */
.features-highlight {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.highlight-card {
    background: #040623;
    border-radius: 24px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.highlight-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.highlight-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Legal Pages Styling */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-page header {
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #0a1628;
}

.legal-page .last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #0a1628;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: #1a4480;
}

.legal-page p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1a4480;
}

.legal-page footer {
    margin-top: 3rem;
}

/* Responsive - Tablet */
@media (max-width: 1000px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .features-header h1 {
        font-size: 2.25rem;
    }

    .highlight-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
    }

    .highlight-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Responsive - Large Mobile */
@media (max-width: 768px) {
    .top-nav {
        padding: 1rem 1.25rem;
    }

    .top-nav .nav-logo {
        height: 28px;
    }

    .top-nav .nav-links {
        gap: 1.25rem;
    }

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

    .hero {
        padding: 1.5rem;
    }

    .logo {
        max-width: 300px;
    }

    .content-page {
        padding: 2rem 1.25rem;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .content-page .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .guest-note {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        border-radius: 16px;
        margin: 0 1rem 2.5rem;
    }

    .guest-note span {
        font-size: 0.9rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card .plan-price {
        font-size: 3rem;
    }

    .pricing-card .plan-features li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

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

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 1.25rem;
    }

    .feature-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .features-header {
        margin-bottom: 2.5rem;
    }

    .features-header h1 {
        font-size: 1.875rem;
    }

    .features-header p {
        font-size: 1rem;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .highlight-content h3 {
        font-size: 1.2rem;
    }

    .highlight-content p {
        font-size: 0.95rem;
    }

    footer {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-nav a {
        margin: 0 0.75rem;
        font-size: 0.85rem;
    }

    .legal-page {
        padding: 1.5rem 1.25rem;
    }

    .legal-page h1 {
        font-size: 1.75rem;
    }

    .legal-page h2 {
        font-size: 1.15rem;
    }

    .legal-page p,
    .legal-page li {
        font-size: 0.95rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .top-nav {
        padding: 0.875rem 1rem;
    }

    .top-nav .nav-logo {
        height: 24px;
    }

    .top-nav .nav-links {
        gap: 0.875rem;
    }

    .top-nav .nav-links a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 1rem;
    }

    .logo {
        max-width: 240px;
    }

    .app-store-badge {
        margin-top: 1.5rem;
    }

    .app-store-badge img {
        height: 44px;
    }

    .content-page {
        padding: 1.5rem 1rem;
    }

    .content-page h1 {
        font-size: 1.625rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .guest-note {
        margin: 0 0.5rem 2rem;
        padding: 1rem 1.25rem;
    }

    .guest-note span {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .pricing-container {
        padding: 0;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .pricing-card .plan-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.875rem;
    }

    .pricing-card .plan-name {
        font-size: 1.25rem;
    }

    .pricing-card .plan-price {
        font-size: 2.5rem;
    }

    .pricing-card .plan-price span {
        font-size: 1rem;
    }

    .pricing-card .plan-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a {
        margin: 0;
    }

    .copyright {
        margin-top: 1rem;
        font-size: 0.75rem;
    }

    .legal-page {
        padding: 1.25rem 1rem;
    }

    .legal-page h1 {
        font-size: 1.5rem;
    }

    .legal-page ul {
        margin-left: 1.25rem;
    }
}
