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

:root {
    /* Brand Colors from Logo */
    --primary-color: #00BAA8;
    --secondary-color: #070747;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-danger: #dc3545;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #070747 0%, #00BAA8 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.text-danger {
    color: var(--text-danger);
}

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

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

.btn-primary:hover {
    background: #009688;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    transition: var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

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

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

.nav-logo .logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav-link.cta-btn:hover {
    background: #009688;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-guarantee {
    margin-top: 1rem;
}

.guarantee-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    animation: heroFloat 6s ease-in-out infinite;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-hard);
    position: relative;
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.chat-interface {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.message {
    display: flex;
    flex-direction: column;
}

.message.finder {
    align-items: flex-start;
}

.message.owner {
    align-items: flex-end;
}

.message-bubble {
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.owner .message-bubble {
    background: var(--primary-color);
    color: var(--white);
}

.message.finder .message-bubble {
    background: #f1f1f1;
    color: var(--text-dark);
}

.message-time {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
    padding: 0 8px;
}

.message.owner .message-time {
    text-align: right;
}

.message.finder .message-time {
    text-align: left;
}

.online-status {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 12px;
    align-self: center;
}

.online-status strong {
    color: var(--primary-color);
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.chat-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--text-dark);
    outline: none;
    max-width: calc(100% - 45px);
}

.chat-input input::placeholder {
    color: #999;
    font-size: 0.75rem;
    opacity: 1;
}

.send-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.send-btn:hover {
    background: #009688;
    transform: scale(1.05);
}

.send-btn svg {
    width: 16px;
    height: 16px;
}

/* Fix chat message alignment */
.message.finder {
    align-items: flex-start !important;
}

.message.finder .message-bubble {
    align-self: flex-start;
    margin-right: auto;
}

.message.owner {
    align-items: flex-end !important;
}

.message.owner .message-bubble {
    align-self: flex-end;
    margin-left: auto;
}

.message-bubble {
    max-width: 75%;
    word-wrap: break-word;
    display: block;
}

/* Ensure placeholder text is visible on mobile */
.chat-input input::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Reduce animations on mobile for better performance */
.hero-visual {
    animation: none;
}

.floating-tags .tag {
    animation: none;
}

.floating-tags {
    position: absolute;
    top: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tag {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    transition: var(--transition);
}

.tag.qr-tag {
    animation-delay: 1.5s;
}

.tag-icon {
    flex-shrink: 0;
}

.floating-tags .tag {
    transition: var(--transition);
}

.floating-tags .tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hard);
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.05;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.bg-element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

/* Problem Solution Section */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-reveal {
    background: var(--bg-gradient);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    color: var(--white);
}

.solution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.privacy-shield {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-visual {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-arrow {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

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

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

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

.feature-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
}

.feature-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-hard);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotateY(10deg);
    background: var(--primary-color);
}

.feature-card:hover .feature-icon-wrapper svg {
    stroke: var(--white);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 186, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.use-case-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.use-case-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.highlight-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-highlight p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-savings {
    margin-top: 0.5rem;
}

.savings-text {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features .feature-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-features .feature-item:last-child {
    border-bottom: none;
}

.pricing-features .feature-item.unavailable {
    color: #999;
    opacity: 0.6;
}

.info-icon {
    cursor: help;
    margin-left: 0.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 186, 168, 0.1);
    border: 1px solid rgba(0, 186, 168, 0.3);
}

.info-icon:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.info-icon:hover svg {
    stroke: white;
}

.info-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.tooltip {
    position: absolute;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    pointer-events: none;
}

.tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--secondary-color);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 2rem;
}

.pricing-guarantee p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* New Pricing Table Styles */
.pricing-table-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

.plan-header {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-right: 1px solid #eee;
}

.plan-header:last-child {
    border-right: none;
}

.plan-header.popular {
    background: linear-gradient(135deg, rgba(0, 186, 168, 0.05), rgba(0, 186, 168, 0.1));
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.plan-header.popular .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.plan-price .currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.plan-savings {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.pricing-table {
    display: block;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.feature-row:hover {
    background-color: rgba(0, 186, 168, 0.02);
}

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

.feature-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.feature-name strong {
    color: var(--text-dark);
    font-weight: 600;
}

.feature-name small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.feature-value {
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem;
}

.feature-value:nth-child(3) {
    background-color: rgba(0, 186, 168, 0.05);
    border-radius: 8px;
    margin: 0 0.25rem;
}

/* Mobile Responsive for Pricing Table */
@media (max-width: 768px) {
    .pricing-table-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        background: transparent;
        border-bottom: none;
    }
    
    .plan-header {
        background: var(--white);
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .plan-header.popular {
        border-color: var(--primary-color);
        background: rgba(0, 186, 168, 0.02);
    }
    
    .pricing-table {
        margin-top: 2rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--white);
        border: 1px solid #eee;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .feature-name {
        margin-bottom: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .feature-values-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-value {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #eee;
    }
    
    .feature-value:nth-child(3) {
        background-color: rgba(0, 186, 168, 0.1);
        border-color: var(--primary-color);
        margin: 0;
    }
    
    /* Stack feature values vertically on mobile */
    .feature-row {
        display: block;
    }
    
    .feature-row::after {
        content: '';
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--bg-gradient);
    color: var(--white);
    text-align: center;
}

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

.cta-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-icon {
    color: var(--white);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-contact {
    display: flex;
    gap: 2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

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

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

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

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

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

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 1s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 1s ease-out forwards;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hard);
}

.stagger-animation .problem-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation .problem-card:nth-child(2) {
    animation-delay: 0.3s;
}

.stagger-animation .problem-card:nth-child(3) {
    animation-delay: 0.5s;
}

.solution-features .feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.solution-features .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.solution-features .feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-logo .logo {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-link.cta-btn {
        margin-top: 1rem;
        width: 80%;
        border: none;
        border-radius: var(--border-radius);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }

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

    .floating-tags {
        position: static;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
        width: 100%;
    }

    .tag {
        font-size: 0.85rem;
        padding: 10px 16px;
        flex: none;
        width: auto;
        min-width: 120px;
        text-align: center;
    }

    .tag:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-hard);
    }

    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .feature-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .pricing-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        height: 55px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Mobile Touch Enhancements */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .info-icon {
        padding: 8px;
        margin: -8px;
        touch-action: manipulation;
        width: 24px;
        height: 24px;
    }

    .info-icon svg {
        width: 14px;
        height: 14px;
    }

    /* Ensure send button is visible on mobile */
    .chat-input {
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 20px;
        border: 1px solid #e0e0e0;
        flex-shrink: 0;
    }

    .chat-input input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 8px 12px;
        font-size: 0.75rem;
        color: var(--text-dark);
        outline: none;
        max-width: calc(100% - 45px);
    }

    .send-btn {
        display: flex !important;
        width: 32px;
        height: 32px;
        border: none;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        flex-shrink: 0;
        min-width: 32px;
    }

    .send-btn svg {
        width: 16px;
        height: 16px;
        display: block;
    }

    /* Mobile message alignment fixes */
    .message.finder {
        align-items: flex-start !important;
    }

    .message.finder .message-bubble {
        align-self: flex-start;
        margin-right: auto;
    }

    .message.owner {
        align-items: flex-end !important;
    }

    .message.owner .message-bubble {
        align-self: flex-end;
        margin-left: auto;
    }

    .message-bubble {
        max-width: 75%;
        word-wrap: break-word;
        display: block;
    }

    /* Hide placeholder text on mobile */
    .chat-input input::placeholder {
        color: transparent;
    }

    /* Reduce animations on mobile for better performance */
    .hero-visual {
        animation: none;
    }

    .floating-tags .tag {
        animation: none;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo {
        height: 40px;
    }

    .footer-logo {
        height: 50px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        gap: 2rem;
    }

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

    .floating-tags {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

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

    .solution-reveal {
        padding: 2rem;
    }

    .feature-card,
    .use-case-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    /* Enhanced mobile interactions */
    .problem-card:active,
    .feature-card:active,
    .use-case-card:active {
        transform: scale(0.98);
    }
} 