/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-400: #fb923c;
    --orange-300: #fdba74;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: var(--gray-900);
    color: var(--white);
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: var(--orange-500);
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.dark-mode-toggle .moon-icon {
    display: block;
}

.dark-mode-toggle .sun-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400), var(--orange-300));
}

body.dark-mode .hero-bg {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-500), var(--orange-400));
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: 5rem;
    right: 5rem;
    animation: blob1 20s linear infinite;
}

.blob-2 {
    bottom: 5rem;
    left: 5rem;
    animation: blob2 15s linear infinite;
}

@keyframes blob1 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(90deg); }
}

@keyframes blob2 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(-90deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 1200px;
}

.hero-logo h1 {
    color: white;
    margin-bottom: 2rem;
}

.hero-headline {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-white {
    background: white;
    color: var(--orange-500);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-dark {
    background: var(--gray-900);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-white-solid {
    background: white;
    color: var(--gray-900);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-white-solid:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-orange {
    background: var(--orange-500);
    color: white;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-dark-outline {
    background: transparent;
    border: 2px solid var(--gray-900);
    color: var(--gray-900);
}

body.dark-mode .btn-dark-outline {
    border-color: var(--gray-800);
    background: var(--gray-800);
    color: white;
}

.btn-dark-outline:hover {
    transform: scale(1.05);
    background: var(--gray-900);
    color: white;
}

body.dark-mode .btn-dark-outline:hover {
    background: var(--gray-700);
}

/* Scroll Indicator */
.scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.25rem;
    margin: 0 auto;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.375rem;
    background: white;
    border-radius: 50%;
    animation: scroll 2s ease-in-out infinite;
}

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

@keyframes scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

/* Section Styles */
section {
    padding: 5rem 1.5rem;
}

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

.section-header h3 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

body.dark-mode .section-header p {
    color: #9ca3af;
}

/* Problem Section */
.problem-section {
    background: var(--gray-50);
}

body.dark-mode .problem-section {
    background: var(--gray-800);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body.dark-mode .problem-card {
    background: var(--gray-700);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

body.dark-mode .problem-card:hover {
    background: var(--gray-600);
}

.problem-card .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-card .icon-wrapper i {
    color: #ef4444;
    font-size: 1.75rem;
}

.problem-card h4 {
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--gray-600);
}

body.dark-mode .problem-card p {
    color: #9ca3af;
}

/* Features Section */
.features-section {
    background: white;
}

body.dark-mode .features-section {
    background: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    
}

.feature-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--gray-50);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    
}

body.dark-mode .feature-card {
    background: var(--gray-800);
}

.feature-card:hover {
    transform: translateY(-12px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body.dark-mode .feature-card:hover {
    background: #273142;
}

.feature-image {
    height: 12rem;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--gray-600);
}

body.dark-mode .feature-content p {
    color: #9ca3af;
}

/* How It Works Section */
.how-section {
    background: #fff7ed;
}

body.dark-mode .how-section {
    background: var(--gray-800);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    margin-top: 3rem;
}

.progress-line {
    display: none;
}

@media (min-width: 1024px) {
    .progress-line {
        display: block;
        position: absolute;
        top: 8rem;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--orange-500), var(--orange-400), var(--orange-500));
        animation: progressGrow 1.5s ease-out forwards;
        transform-origin: left;
    }

    @keyframes progressGrow {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange-500);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(360deg);
}

.step-icon i {
    color: white;
    font-size: 3.5rem;
}

.step h4 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray-600);
}

body.dark-mode .step p {
    color: #9ca3af;
}

/* Students Section */
.students-section {
    background: white;
}

body.dark-mode .students-section {
    background: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.wiggle-text {
    animation: wiggle 0.5s ease-in-out 1s;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #fff7ed, white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

body.dark-mode .benefit-card {
    background: linear-gradient(135deg, var(--gray-800), #273142);
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark-mode .benefit-icon {
    background: rgba(249, 115, 22, 0.2);
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

body.dark-mode .benefit-icon i {
    color: #fb923c;
}

.benefit-content h4 {
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--gray-600);
}

body.dark-mode .benefit-content p {
    color: #9ca3af;
}

.cta-center {
    text-align: center;
}

/* Mess Owners Section */
.owners-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
    position: relative;
    overflow: hidden;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.text-white {
    color: white;
}

.text-light {
    color: #9ca3af;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.owner-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border: 1px solid var(--gray-700);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(249, 115, 22, 0.5);
}

.stat-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5);
    transition: var(--transition);
}

.owner-card:hover .stat-badge {
    transform: scale(1.1) rotate(5deg);
}

.owner-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.owner-icon i {
    color: #fb923c;
    font-size: 1.75rem;
}

.owner-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.owner-card p {
    color: #9ca3af;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--gray-50);
}

body.dark-mode .roadmap-section {
    background: var(--gray-800);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    display: none;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--orange-500), #a855f7, #ec4899);
        transform: translateX(-50%);
        animation: timelineGrow 1.5s ease-out forwards;
    }

    @keyframes timelineGrow {
        from { transform: translateX(-50%) scaleY(0); }
        to { transform: translateX(-50%) scaleY(1); }
    }
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body.dark-mode .timeline-content {
    background: var(--gray-700);
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.timeline-content:hover .timeline-icon {
    transform: rotate(360deg);
}

.timeline-icon i {
    color: white;
    font-size: 1.75rem;
}

.timeline-content h4 {
    display: inline-block;
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-live {
    background: #d1fae5;
    color: #065f46;
}

body.dark-mode .status-live {
    background: rgba(5, 150, 105, 0.3);
    color: #6ee7b7;
}

.status-progress {
    background: #dbeafe;
    color: #1e40af;
}

body.dark-mode .status-progress {
    background: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.status-soon,
.status-planned,
.status-future {
    background: var(--gray-100);
    color: var(--gray-700);
}

body.dark-mode .status-soon,
body.dark-mode .status-planned,
body.dark-mode .status-future {
    background: var(--gray-700);
    color: #9ca3af;
}

.timeline-content p {
    color: var(--gray-600);
}

body.dark-mode .timeline-content p {
    color: #9ca3af;
}

.timeline-dot {
    display: none;
}

@media (min-width: 768px) {
    .timeline-dot {
        display: block;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        background: white;
        border: 4px solid var(--orange-500);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        position: relative;
        z-index: 10;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 3rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
    }
}

/* Contact Section */
.contact-section {
    background: white;
}

body.dark-mode .contact-section {
    background: var(--gray-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #fff7ed;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

body.dark-mode .contact-card {
    background: var(--gray-800);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

body.dark-mode .contact-card:hover {
    background: #273142;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

body.dark-mode .contact-label {
    color: var(--gray-600);
}

.contact-value {
    font-weight: 500;
    word-break: break-word;
}

.contact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.trust-section {
    text-align: center;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

body.dark-mode .trust-label {
    color: var(--gray-600);
}

.trust-link {
    color: var(--orange-500);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.trust-link:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

body.dark-mode .trust-link {
    color: #fb923c;
}

/* Footer */
.footer {
    background: var(--gray-900);
    padding: 3rem 1.5rem;
}

body.dark-mode .footer {
    background: #030712;
}

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

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange-500);
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: var(--gray-800);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--orange-500);
}

/* Animations */
.animate-scale {
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 0.7s;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Animations */
.icon-bounce:hover {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.1) rotate(-10deg); }
}

.icon-float:hover {
    animation: floatUpDown 0.5s ease infinite;
}

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

.card-shuffle {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.card-shuffle:hover {
    transform: translateY(-12px) rotate(2deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .steps-container,
    .benefits-grid,
    .owners-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        margin: 0 0 1rem 0 !important;
    }
}

@media (max-width: 480px) {
    .problem-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto 1rem;
    }
}
