/* Apple-inspired CSS for Waply Connect */

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

:root {
    --primary-color: #007AFF;
    --secondary-color: #0056b3;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --background: #ffffff;
    --surface: #f5f5f7;
    --border: #d2d2d7;
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-brand .nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-login {
    background: transparent;
    color: var(--text-primary);
}

.btn-login:hover {
    background: var(--surface);
}

.btn-setup {
    background: transparent;
    color: #6c757d;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-setup:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

/* Scroll offset for fixed navigation */
section[id] {
    scroll-margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 120px 24px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Bootstrap Hero Title Overrides */
.hero h1.display-4 {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #2c3e50 !important;
    margin-bottom: 30px !important;
    letter-spacing: -0.02em !important;
    max-width: 100% !important;
}

.hero .lead {
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: #6c757d !important;
    margin-bottom: 40px !important;
    max-width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.hero-feature svg {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* WordPress Notice Section */
.wordpress-notice {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    gap: 30px;
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
}

.notice-text {
    flex: 1;
}

.notice-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.notice-text p {
    font-size: 16px;
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

.notice-action {
    flex-shrink: 0;
}

.btn-wordpress {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(25,118,210,0.3);
}

.btn-wordpress:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25,118,210,0.4);
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-primary);
}

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

.feature-card {
    padding: 32px;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--surface);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #86868b;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #86868b;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #86868b;
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 12px;
}

.mobile-menu a.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile styles moved to mobile.css */

@media (max-width: 1024px) {
    .pricing-detailed .pricing-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Logo Styling */
.nav-brand .nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Demo Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius);
    width: 90%;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-body video {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Video Start Screen */
.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
}

.video-start-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.video-preview {
    max-width: 400px;
    padding: 40px 20px;
}

.video-preview .video-logo {
    height: 80px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.video-preview h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.video-preview p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-button svg {
    width: 20px;
    height: 20px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-card.trial {
    border-color: var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price .currency {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 4px;
}

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

.pricing-header p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.pricing-features li:before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: rgba(0, 122, 255, 0.05);
    border-radius: var(--radius);
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Pricing Page Specific */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #f5f5f7;
    color: var(--text-primary);
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.pricing-hero p {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.pricing-detailed {
    padding: 80px 0;
    background: white;
}

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

.pricing-detailed .pricing-card {
    padding: 28px 24px;
    border: 1px solid #d2d2d7;
    border-radius: 18px;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-detailed .pricing-features {
    margin-bottom: 28px;
    flex: 1;
}

.pricing-detailed .pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.pricing-detailed .check {
    color: #34C759;
    font-weight: bold;
    margin-right: 12px;
    width: 20px;
}

.pricing-detailed .warning {
    color: #FF9500;
    font-weight: bold;
    margin-right: 12px;
    width: 20px;
}

.pricing-card .pricing-note {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background: white;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Navigation Active State */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer Logo */
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 48px 0 80px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #f8fafc;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    margin: 24px 0 20px;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.platform-benefits {
    background: #f5f5f7;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
}

.platform-benefits h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Contact Page */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #f5f5f7;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-hero p {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.response-time {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
}

.response-time h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.response-time ul {
    list-style: none;
    padding: 0;
}

.response-time li {
    padding: 4px 0;
    color: var(--text-secondary);
}

.contact-faq {
    padding: 80px 0;
    background: #f5f5f7;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Contact Page */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #f5f5f7;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-hero p {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.response-time {
    background: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
}

.response-time h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.response-time ul {
    list-style: none;
    padding: 0;
}

.response-time li {
    padding: 4px 0;
    color: var(--text-secondary);
}

.contact-faq {
    padding: 80px 0;
    background: #f5f5f7;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Legal Pages */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #f5f5f7;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-hero p {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 20px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.page-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats-card,
.contact-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    background: #f5f5f7;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Why Waply-Connect Section - Clean Apple Style */
.why-waply-connect {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header .section-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.standout-section {
    margin-bottom: 60px;
}

.standout-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.standout-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.standout-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
}

.features-list {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.comparison-section {
    margin-bottom: 60px;
    background: #ffffff;
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -0.01em;
}

.comparison-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.comparison-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: var(--surface);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.4;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-col {
    font-weight: 500;
    color: var(--text-primary);
}

.waply-col {
    color: var(--primary-color);
    font-weight: 500;
}

.competitor-col {
    color: var(--text-secondary);
}

.bottom-line-section {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-line-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.bottom-line-text {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bottom-line-cta {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ========================================
   IMPROVED CONTAINER STYLING
   ======================================== */

/* Section Header Containers */
.section-header-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header-container .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header-container .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Standout Container */
.standout-container {
    text-align: center;
    margin: 50px 0 40px;
    padding: 0 20px;
}

.standout-container .standout-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Features Grid Container */
.features-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 60px;
}

.feature-content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.feature-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-content-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Comparison Container */
.comparison-container {
    margin: 60px 0;
    padding: 0 20px;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
}

/* Bottom Line Container */
.bottom-line-container {
    margin-top: 60px;
    padding: 0 20px;
}

.bottom-line-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bottom-line-content .bottom-line-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.bottom-line-text-container {
    margin-bottom: 25px;
}

.bottom-line-text-container .bottom-line-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-line-cta-container {
    margin-bottom: 40px;
}

.bottom-line-cta-container .bottom-line-cta {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .section-header-container .section-title {
        font-size: 2rem;
    }

    .section-header-container .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-content-card {
        padding: 25px 20px;
    }

    .bottom-line-content {
        padding: 40px 25px;
    }

    .bottom-line-content .bottom-line-title {
        font-size: 1.6rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons-container .btn-primary,
    .cta-buttons-container .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* All mobile styles moved to mobile.css */
