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

:root {
    --primary-color: #F4A261;
    --secondary-color: #E07A2F;
    --accent-color: #264653;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --background: #FFFFFF;
    --background-light: #F7FAFC;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #F4A261 0%, #E07A2F 100%);
    --gradient-secondary: linear-gradient(135deg, #264653 0%, #2A9D8F 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    background: transparent;
    padding: 0;
}

.logo-image {
    height: 80px;
    width: 200px;
    object-fit: contain;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

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

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.screenshot-placeholder {
    width: 90%;
    height: 90%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.screenshot-content {
    width: 85%;
    height: 85%;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.screenshot-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.screenshot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.screenshot-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.screenshot-feature {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slideshow Navigation */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
    box-shadow: var(--shadow-lg);
}

.slideshow-prev {
    left: -5px;
}

.slideshow-next {
    right: -5px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: var(--gradient-secondary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-xl);
}

.slideshow-prev:active,
.slideshow-next:active {
    transform: translateY(-50%) scale(1.05);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--background-light);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: white;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* For Parents Section */
.for-parents {
    background: var(--background-light);
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-split.reverse .section-content {
    order: 2;
}

.section-split.reverse .section-image {
    order: 1;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.parent-features,
.sitter-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.parent-feature,
.sitter-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.parent-feature-icon,
.sitter-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.parent-feature-text h4,
.sitter-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.parent-feature-text p,
.sitter-feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.section-image-content {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.emoji-large {
    font-size: 8rem;
    opacity: 0.3;
}

/* For Sitters Section */
.for-sitters {
    background: white;
}

/* Services Section */
.services {
    background: var(--background-light);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison {
    background: white;
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table .feature-column {
    text-align: left;
    background: var(--accent-color);
    color: white;
    font-weight: 800;
}

.comparison-table .toebeans-column {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table .competitor-column {
    background: rgba(244, 162, 97, 0.8);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: var(--background-light);
}

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

.comparison-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
    text-align: center;
}

.comparison-table .feature-label {
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.comparison-table .toebeans-cell {
    background: rgba(244, 162, 97, 0.1);
    position: relative;
}

.comparison-table .toebeans-cell.highlight {
    background: rgba(244, 162, 97, 0.2);
    font-size: 1.125rem;
}

.comparison-table .competitor-cell {
    background: white;
}

.comparison-table .competitor-cell.highlight {
    background: rgba(0, 0, 0, 0.02);
    font-size: 1.125rem;
}

.comparison-table .toebeans-cell,
.comparison-table .competitor-cell {
    text-align: center;
}

.comparison-table .cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.comparison-table .cell-content .checkmark,
.comparison-table .cell-content .cross,
.comparison-table .cell-content .neutral {
    margin: 0;
    margin-bottom: 0.25rem;
}

.comparison-table .toebeans-cell strong,
.comparison-table .competitor-cell strong {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.comparison-table .toebeans-cell.highlight strong {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.comparison-table .competitor-cell.highlight strong {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.comparison-table .feature-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.comparison-table .checkmark {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .neutral {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: bold;
}

.platform-logo {
    font-weight: 800;
    font-size: 1.25rem;
}

.comparison-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.comparison-note p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.7;
}

.comparison-note strong {
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    background: var(--background-light);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-card.pro {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.pro:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-badge.pro-badge {
    background: var(--gradient-secondary);
}

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

.pricing-plan {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
}

.pricing-features .feature-icon {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-pricing-pro {
    background: var(--gradient-secondary);
}

.btn-pricing-enterprise {
    background: var(--accent-color);
}

.pricing-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.pricing-link:hover {
    color: var(--primary-color);
}

.pricing-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background: white;
    padding: 80px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

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

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

.contact-form .hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Download Section */
.download {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    width: 200px;
    height: 70px;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.btn-download.android .download-logo,
.btn-download.ios .download-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.download-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-logo-image-header {
    height: 80px;
    width: 200px;
    object-fit: contain;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .screenshot-content {
        padding: 1.5rem;
    }

    .screenshot-header {
        font-size: 1.25rem;
    }

    .screenshot-title {
        font-size: 1.5rem;
    }

    .screenshot-feature {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .slideshow-prev,
    .slideshow-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .slideshow-prev {
        left: -5px;
    }

    .slideshow-next {
        right: -5px;
    }

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

    .section-split.reverse .section-content {
        order: 1;
    }

    .section-split.reverse .section-image {
        order: 2;
    }

    .download-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .download-buttons {
        flex-direction: column;
    }

    .btn-download {
        width: 100%;
        max-width: 200px;
        height: 60px;
        justify-content: center;
    }

    .download-logo {
        width: 100%;
        height: 100%;
    }

    .slideshow-prev,
    .slideshow-next {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .slideshow-prev {
        left: -5px;
    }

    .slideshow-next {
        right: -5px;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }

    .comparison-table .toebeans-cell strong,
    .comparison-table .competitor-cell strong {
        font-size: 1rem;
    }

    .comparison-table .feature-detail {
        font-size: 0.75rem;
    }

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

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

    .pricing-card.pro:hover {
        transform: translateY(-5px);
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

