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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img {
    height: 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.brand img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(34, 197, 94, 0.4));
}

/* Creative Stamp Animation */
.stamp-animation {
    position: fixed;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 9999;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.stamp-animation.active {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

.stamp-animation::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
}

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

.nav-menu.active {
    display: flex;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.button {
    background-color: #6366f1;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    background-color: #5855eb;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.button.secondary {
    background-color: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.button.secondary:hover {
    background-color: #6366f1;
    color: white;
}

.menu-button {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(99,102,241,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(-5px); }
    75% { transform: translateY(-10px) translateX(10px); }
}

.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-dashboard-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: #fff;
    padding: 12px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-dashboard-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

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

.typing-text {
    font-size: 1.2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    min-height: 30px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-paragraph {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.integration-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.integration-icons {
    display: flex;
    gap: 1rem;
}

.integration-icon {
    padding: 8px 16px;
    background-color: #f1f5f9;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.integration-icon.gmail {
    background-color: #fef2f2;
    color: #dc2626;
}

.integration-icon.outlook {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Email Mockup */
.email-mockup {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 500px;
}

.email-header {
    background-color: #f8fafc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.email-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ef4444; }
.control.yellow { background-color: #f59e0b; }
.control.green { background-color: #10b981; }

.email-title {
    font-weight: 600;
    color: #374151;
}

.email-sidebar {
    background-color: #f8fafc;
    padding: 16px;
    border-right: 1px solid #e2e8f0;
    width: 150px;
    float: left;
}

.email-label {
    padding: 6px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.email-label:nth-child(1) { background-color: #fef2f2; color: #dc2626; }
.email-label:nth-child(2) { background-color: #fff7ed; color: #ea580c; }
.email-label:nth-child(3) { background-color: #fefce8; color: #ca8a04; }
.email-label:nth-child(4) { background-color: #f0fdf4; color: #16a34a; }
.email-label:nth-child(5) { background-color: #eff6ff; color: #2563eb; }
.email-label:nth-child(6) { background-color: #f3e8ff; color: #9333ea; }
.email-label:nth-child(7) { background-color: #fdf2f8; color: #c2185b; }
.email-label:nth-child(8) { background-color: #f1f5f9; color: #64748b; }
.email-label:nth-child(9) { background-color: #fef7ff; color: #a21caf; }

.email-content {
    padding: 20px;
    margin-left: 150px;
    min-height: 200px;
}

.email-item {
    background-color: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.email-sender {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.email-preview {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.email-signature {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.reply-button {
    background-color: #6366f1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reply-button:hover {
    background-color: #5855eb;
}

/* Companies Section */
.companies-section {
    padding: 60px 0;
    background-color: #f9f7f4;
}

.companies-text {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logo {
    font-weight: 600;
    color: #64748b;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
}

.company-logo:hover {
    opacity: 1;
}

/* 1/1/1 Brand Timing Section */
.brand-timing {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.timing-brand {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #22c55e 50%, #f59e0b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    animation: brandPulse 3s ease-in-out infinite;
}

.timing-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

@keyframes brandPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Enhanced Timeline Steps with AP Workflow Animation */
.timeline-step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.timeline-step:hover {
    transform: translateY(-8px) scale(1.03);
}

.minute-step {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

.hour-step {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 2px solid #f59e0b;
}

.day-step {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
}

/* Step Animations */
.step-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    height: 60px;
    position: relative;
}

.email-icon-animated, .learning-brain, .automation-gears,
.stamp-logo-mini, .pattern-recognition, .spreadsheet-smart,
.flowing-data {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.connection-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #22c55e 100%);
    border-radius: 2px;
    animation: flowRight 1.5s ease-in-out infinite;
}

.data-particles::before {
    content: '• • •';
    color: #f59e0b;
    animation: twinkle 1s ease-in-out infinite;
    font-size: 1.5rem;
}

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

@keyframes flowRight {
    0% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1.2); opacity: 1; }
    100% { transform: scaleX(0.5); opacity: 0.5; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Interactive hover effects for each step */
.minute-step:hover .email-icon-animated {
    animation: emailBounce 0.6s ease-in-out;
}

.hour-step:hover .learning-brain {
    animation: brainThink 0.8s ease-in-out;
}

.day-step:hover .automation-gears {
    animation: gearsRotate 1s ease-in-out;
}

@keyframes emailBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(10deg); }
}

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

@keyframes gearsRotate {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.2); }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.step {
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

.cta-text {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* New Timeline Steps Design */
.timeline-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.timeline-step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-step.blue {
    background: linear-gradient(135deg, #f9f7f4 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
}

.timeline-step.pink {
    background: linear-gradient(135deg, #faf9f7 0%, #f8fafc 100%);
    border: 2px solid #6366f1;
}

.timeline-step.green {
    background: linear-gradient(135deg, #f9f7f4 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
}

.step-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-step.pink .step-time {
    color: #6366f1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.timeline-step.pink .step-title {
    color: #1e293b;
}

.timeline-step .step-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.testimonial {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #f9f7f4;
    border-radius: 0;
    box-shadow: none;
}

.testimonial-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.testimonial-author {
    color: #64748b;
    font-style: italic;
}

.features-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature-content {
    background-color: #f3f1ed;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-pairs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pairs-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.email-icons {
    display: flex;
    gap: 0.5rem;
}

.email-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.email-icon.gmail {
    background-color: #fef2f2;
    color: #dc2626;
}

.email-icon.outlook {
    background-color: #eff6ff;
    color: #2563eb;
}

.feature-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

.mockup-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: #fff;
    padding: 8px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Special styling for GIF and screenshots to ensure clarity */
.mockup-image[src*="gif"] {
    background-color: #f8fafc;
    padding: 12px;
    border: 3px solid #6366f1;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.mockup-image[src*="Screenshot"] {
    background-color: #f8fafc;
    padding: 10px;
    border: 2px solid #d1d5db;
    max-width: 650px;
}

/* Ensure all feature images maintain consistent sizing */
.feature-row .mockup-image {
    min-height: 300px;
    object-fit: contain;
    display: block;
}

.email-interface {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.email-body {
    display: flex;
    min-height: 300px;
}

.email-list {
    padding: 20px;
    width: 100%;
}

.email-list .email-item {
    background-color: #f8fafc;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.email-list .email-sender {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
    font-size: 0.9rem;
}

.email-list .email-preview {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Setup Showcase Section */
.setup-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 80px auto 0;
    max-width: 1000px;
}

.setup-card, .privacy-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.setup-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.privacy-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.setup-card:hover, .privacy-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.4);
}

.privacy-card:hover {
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.4);
}

.setup-icon, .privacy-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.setup-title, .privacy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.setup-description, .privacy-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

/* Responsive design for setup showcase */
@media (max-width: 768px) {
    .setup-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px auto 0;
    }
    
    .setup-card, .privacy-card {
        padding: 30px;
    }
    
    .setup-icon, .privacy-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .setup-title, .privacy-title {
        font-size: 20px;
    }
    
    .setup-description, .privacy-description {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle {
    width: 50px;
    height: 25px;
    background-color: #6366f1;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle::after {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: transform 0.3s ease;
}

.toggle.annual::after {
    transform: translateX(-25px);
}

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

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6366f1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.plan-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plan-trial {
    color: #6366f1;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.plan-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.check-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.comparison-section {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #f9f7f4;
    border-radius: 12px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.comparison-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #1e293b;
}

.vs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6366f1;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background-color: #f9f7f4;
    text-align: center;
}

.security-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.contact-form {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

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

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 24px;
}

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

.form-status.success {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-button {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .email-mockup {
        max-width: 100%;
    }
    
    .email-sidebar {
        width: 120px;
    }
    
    .email-content {
        margin-left: 120px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-step {
        min-width: 100%;
        max-width: 100%;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .companies-logos {
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .features-main-heading {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.5rem;
    }
    
    .email-sidebar {
        display: none;
    }
    
    .email-content {
        margin-left: 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Slow down GIF animation */
img[src*="ap_tracker_demo.gif"] {
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6366f1;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

/* Smooth transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}