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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #666;
}

.main-nav a.btn-login {
    color: white !important;
}

.main-nav a.btn-login:hover {
    color: white !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu-overlay {
    display: none;
}

.btn-login {
    background: #333;
    color: white !important;
    border: none;
    padding: 0 24px;
    height: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: Inter, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-login:hover {
    background: #555;
    color: white !important;
}

.btn-login:visited {
    color: white !important;
}

.btn-login:active {
    color: white !important;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 60px 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-message-bubble {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    width: 100%;
    z-index: 0;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.hero-message-bubble .message-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-message-top-left {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.hero-message-top-right {
    top: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.hero-message-bottom-left {
    bottom: 220px;
    left: 8%;
    animation-delay: 3s;
}

.hero-message-bottom-right {
    bottom: 220px;
    right: 8%;
    animation-delay: 4.5s;
}


@media (max-width: 1200px) {
    .hero-message-bubble {
        max-width: 280px;
    }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        min-height: auto;
        padding: 60px 20px 40px;
    }
    
    .hero-message-bubble {
        display: none !important;
    }
    
    .mobile-message-carousel {
        display: block !important;
    }
    
    .carousel-container {
        display: block;
    }
    
    .carousel-slide {
        width: 300px;
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(0 0% 98%), hsl(233 84% 97%));
    border: 0.5px solid #ccc;
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: Inter, sans-serif;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
                var(--tw-ring-shadow, 0 0 #0000),
                var(--tw-shadow);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.hero-subtitle-accent{
    color: #333;
    font-weight: 600;
}

.robot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 1;
}


.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.btn-primary-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-bottom: 0;
}

.btn-primary {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #ebe1b0 0%, #ffd700 50%, #f3c53c 100%);
    color: #171717;
    padding: 14px 52px;
    height: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2);
    font-family: Inter, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
}

.btn-primary-blur-layer {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 999px;
}

.btn-primary-border-layer {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
}

.btn-primary-shadow-layer {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: 999px;
    box-shadow: inset -1.996px 2.391px 18.109px -2.622px rgba(255, 218, 42, 0.1), inset -5.73px -4px 3.36px -2.73px rgba(255, 218, 42, 0.4), inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.3), inset 0 1px 12.2px -5px rgba(255, 237, 154, 0.5), inset -6.727px -6.727px 3.363px -6.727px rgba(255, 218, 42, 0.4), inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.3);
}

.btn-primary-glow {
    background: linear-gradient(180deg, #ebe1b0 0%, #ffd700 50%, #f3c53c 100%);
    width: 100%;
    position: absolute;
    padding: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    filter: blur(16px);
    transition: all 0.3s ease;
    height: 200%;
    pointer-events: none;
}

.btn-primary-glow-hover {
    background: radial-gradient(circle, rgba(255, 255, 94, 0.3) 30%, #ffda2a, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    filter: blur(16px);
    transition: opacity 0.3s ease;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .btn-primary-glow {
        top: 100%;
    }
    
    .btn-primary-wrapper:hover .btn-primary-glow {
        background: radial-gradient(circle, rgba(255, 255, 94, 0.3) 30%, #ffda2a, transparent);
    }
}

.btn-primary-wrapper:hover .btn-primary-glow-hover {
    opacity: 1;
}

.btn-primary-text {
    position: relative;
    display: flex;
    min-height: 20px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    z-index: 3;
    font-size: 16px;
}

.primary-button {
    box-shadow: 
        inset -1.996px 2.391px 18.109px -2.622px rgba(255, 218, 42, 0.1), 
        inset -5.73px -4px 3.36px -2.73px rgba(255, 218, 42, 0.4), 
        inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.3), 
        inset 0 1px 12.2px -5px rgba(255, 237, 154, 0.5), 
        inset -6.727px -6.727px 3.363px -6.727px rgba(255, 218, 42, 0.4), 
        inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.3);
}

.btn-primary-wrapper:hover .btn-primary {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd700 50%, #f5c842 100%);
    color: #171717;
}

.btn-primary-wrapper:hover .btn-primary-shadow-layer {
    box-shadow: 
        inset -1.996px 2.391px 18.109px -2.622px rgba(255, 218, 42, 0.15), 
        inset -5.73px -4px 3.36px -2.73px rgba(255, 215, 0, 0.5), 
        inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.6), 
        inset 0 1px 12.2px -5px rgba(255, 237, 154, 0.8), 
        inset -6.727px -6.727px 3.363px -6.727px rgba(255, 215, 0, 0.5), 
        inset 6.671px 6.671px 3.363px -6.214px rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .btn-primary-wrapper {
        max-width: 320px;
    }
    
    .btn-primary {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    .btn-primary-wrapper {
        max-width: 270px;
    }
    
    .btn-primary {
        width: 270px;
    }
}

.btn-demo {
    background: white;
    color: #333;
    border: none;
    padding: 0 24px;
    height: 52px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-demo:hover {
    opacity: 0.8;
}

.play-icon-container {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    border: 0.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.play-icon {
    width: 24px;
    height: 24px;
}

/* Hero Robot */
.hero-robot {
    display: flex;
    justify-content: center;
}

.hero-robot-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
}

/* Mobile Message Carousel */
.mobile-message-carousel {
    display: none;
    width: 100%;
    margin-top: 40px;
    padding: 0 20px;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-bottom: 10px;
}

.carousel-slide {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-dot:hover {
    background: #9ca3af;
}

.carousel-dot.active {
    background: #222;
    width: 24px;
    border-radius: 4px;
}

/* Activity Section */
.activity-section {
    padding: 100px 20px;
    background: white;
    scroll-margin-top: 80px;
}

.activity-title {
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.activity-description {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.brand-icon-container {
    width: 48px;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.brand-icon {
    width: 100%;
    height: 100%;
}

.activity-plus {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
}

.activity-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: end;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.activity-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.activity-section-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 20px;
}

.activity-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.btn-show-more {
    display: none;
    background: white;
    color: #333;
    border: 1px solid #e8e8e8;
    padding: 0 8px;
    height: 44px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 150px;
    justify-self: center;
}

.btn-show-more:hover {
    border: 1px solid #ccc;
}

.activity-item-mobile-hidden {
    display: flex;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: white;
    scroll-margin-top: 80px;
}

.pricing-title {
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    max-width: 600px;
}

.pricing-card-content {
    padding: 30px 48px;
    position: relative;
}

.pricing-badge {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    right: -27px;
    background: #E63946;
    color: white;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    transform: rotate(-45deg);
    transform-origin: center;
    z-index: 10;
    text-align: center;
}

.pricing-badge-top-left {
    top: 32px;
    left: -32px;
    bottom: auto;
    right: auto;
}





.pricing-card-title {
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-card-description {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-amount {
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-left: 8px;
}

.price-period {
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    margin-left: 4px;
}

.pricing-discount-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pricing-discount-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.2);
    color: #1a9d4a;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
}

.pricing-original-price {
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 200;
    color: #666;
    position: relative;
    display: inline-block;
}

.pricing-original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -6px;
    height: 3px;
    background: #333;
    transform: translateY(-50%) rotate(-14deg);
    transform-origin: center;
    z-index: 1;
}

.pricing-context {
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 30px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.feature-text {
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
}

.pricing-card .btn-primary-wrapper {
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-disclaimer {
    font-family: Inter, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin: 0;
}

.pricing-robot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-robot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.arrow {
    font-size: 1.2rem;
}

.about-title {
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-description {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 50px;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.about-bottom {
    text-align: center;
    margin-bottom: 60px;
}

.about-subtitle {
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.about-quote {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.outreach-section {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
}

.outreach-title {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.outreach-quote {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.outreach-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.outreach-button {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    height: 52px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.outreach-button.secondary {
    background: white;
    color: #333;
    border: 1px solid #e8e8e8;
}

.outreach-button.secondary:hover {
    border: 1px solid #ccc;
}

/* Match Section */
.match-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.match-title {
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.match-description {
    font-family: Inter, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.match-description p {
    line-height: 1.6;
}

.match-line-1 {
    font-weight: 400;
    text-align: left;
    margin: 3rem 4rem 1rem;
}

.match-line-2 {
    font-weight: 400;
    font-style: italic;
    text-align: right;
    margin: 2rem 1rem;
}

.match-line-3 {
    font-weight: 700;
    text-align: center;
    text-indent: 0;
    margin: 2.5em 2rem 4rem;
}

.match-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.match-button {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    height: 52px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.match-button.secondary {
    background: white;
    color: #333;
    border: 1px solid #e8e8e8;
}

.match-button.secondary:hover {
    border: 1px solid #ccc;
}

/* Security Section */
.security-section {
    padding: 0 20px 100px;
    background: white;
}

.security-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;

    border-radius: 24px;
    border: 1px solid #e0e0e0;
}

.security-title {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.security-description {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .hero-message-bubble {
        display: none;
    }
    
    .mobile-message-carousel {
        display: block;
        margin-top: 30px;
    }
    
    .carousel-slide {
        width: 260px;
    }

    .hero {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 24px;
        order: 1;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        order: 3;
    }

    .cta-buttons {
        order: 4;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-message-carousel {
        order: 5;
    }

    .hero-robot {
        order: 6;
    }

    .hero-robot-image {
        max-width: 260px;
    }

    .btn-primary,
    .btn-demo {
        width: 100%;
        max-width: 300px;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .main-nav a:last-of-type {
        border-bottom: none;
    }

    #login-btn {
        width: 100%;
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 1rem;
        color: white !important;
    }

    .activity-section {
        padding: 60px 20px;
    }

    .activity-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .activity-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .activity-header {
        gap: 10px;
        margin-bottom: 30px;
    }

    .activity-plus {
        font-size: 1.2rem;
    }

    .activity-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .activity-list {
        grid-template-columns: 1fr;
    }

    .activity-image-container {
        position: static;
    }

    .activity-section-image {
        max-width: 250px;
    }

    .btn-show-more {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 150px;
        justify-self: center;
    }

    .activity-item-mobile-hidden {
        display: none !important;
    }

    .activity-item-mobile-hidden.show {
        display: flex !important;
    }

    .activity-item {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .activity-text {
        font-size: 0.85rem;
    }

    .activity-checkmark {
        width: 18px;
        height: 18px;
    }

    .pricing-section {
        padding: 60px 20px;
    }

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

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .pricing-container {
        width: 100%;
    }

    .pricing-card-content {
        padding: 24px;
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

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

    .pricing-original-price {
        font-size: 2.5rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-robot-image {
        max-width: 400px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-avatar {
        width: 60px;
        height: 60px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .about-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .about-quote {
        font-size: 0.95rem;
    }

    .about-bottom {
        display: none;
    }

    .outreach-section {
        padding: 40px 20px;
    }

    .outreach-title {
        font-size: 1.3rem;
    }

    .outreach-quote {
        font-size: 1rem;
    }

    .outreach-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .outreach-button {
        width: 100%;
    }

    .match-section {
        padding: 60px 20px;
    }

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

    .match-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .match-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .match-button {
        width: 100%;
    }

    .security-section {
        padding: 60px 20px;
    }

    .security-block {
        padding: 40px 24px;
    }

    .security-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }

    .security-icon {
        width: 18px;
        height: 18px;
    }

    .security-description {
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    padding: 40px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.footer-robot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -80px;
}

.footer-robot-image {
    max-width: 100%;
    max-height: 300px;
    display: block;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-link {
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #666;
}


.footer-left-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-right-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 0;
    }

    footer .container {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .footer-content {
        order: 2;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
        text-align: left;
    }

    .footer-left-group,
    .footer-right-group {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
        width: 100%;
    }

    .footer-link {
        text-align: left;
        align-self: flex-start;
    }

    .footer-robot {
        order: 1;
        margin-top: auto;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .footer-robot-image {
        max-height: 250px;
        margin-bottom: 32px;
    }
}
