/* Variables & Reset */
:root {
    --primary: #6b46c1;
    /* Purple from logo */
    --primary-dark: #553c9a;
    --secondary: #805ad5;
    --accent: #d53f8c;
    /* Pinkish accent */
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--text-white);
}

.bg-light {
    background-color: var(--light-bg);
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-text {
    color: var(--text-main);
    background: transparent;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, rgba(107, 70, 193, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(213, 63, 140, 0.05), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-list {
    margin-bottom: 40px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.hero-cta .small-text {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #eab308;
}

.green {
    background: #22c55e;
}

.dash-body {
    display: flex;
    gap: 15px;
    height: 300px;
}

.dash-sidebar {
    width: 60px;
    background: #f8fafc;
    border-radius: 8px;
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-row {
    display: flex;
    gap: 15px;
    flex: 1;
}

.dash-card {
    background: #f1f5f9;
    border-radius: 8px;
    flex: 1;
}

.dash-card.lg {
    flex: 2;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.awards .container {
    position: relative;
    z-index: 2;
}

.section-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

.section-label::before {
    right: 100%;
}

.section-label::after {
    left: 100%;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.award-item {
    background: white;
    padding: 10px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 70, 193, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(107, 70, 193, 0.15),
        0 10px 10px -5px rgba(107, 70, 193, 0.08);
    border-color: rgba(107, 70, 193, 0.2);
}

.award-item:hover::before {
    left: 100%;
}

.award-item:nth-child(1) {
    border-top: 3px solid #6b46c1;
}

.award-item:nth-child(2) {
    border-top: 3px solid #d53f8c;
}

.award-item:nth-child(3) {
    border-top: 3px solid #3182ce;
}

.award-item:nth-child(4) {
    border-top: 3px solid #38a169;
}

/* Floating elements for visual interest */
.awards::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}
/* Add icons to each item */
.award-item::after {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}
.award-item:nth-child(1)::after {
    content: '\f0b1'; /* Agency icon */
}

.award-item:nth-child(2)::after {
    content: '\f201'; /* Marketers icon */
}

.award-item:nth-child(3)::after {
    content: '\f0e8'; /* Entrepreneurs icon */
}

.award-item:nth-child(4)::after {
    content: '\f1ad'; /* Local Business icon */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .awards {
        padding: 60px 0;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .award-item {
        padding: 30px 15px;
        font-size: 1.1rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .section-label::before,
    .section-label::after {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .award-item {
        padding: 25px 15px;
        font-size: 1rem;
    }
    
    .awards {
        padding: 50px 0;
    }
}

/* Value Prop */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* Mechanism */
.mechanism {
    background: var(--darker-bg);
    color: white;
}

.mechanism .section-sub {
    color: #94a3b8;
}

.engine-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.engine-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 254, 254, 0.726);
    line-height: 1;
    margin-bottom: -20px;
}

.engine-step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.engine-step p {
    color: #cbd5e1;
}

.engine-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin-top: 60px;
    opacity: 0.5;
}

/* Feature Deep Dives */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(107, 70, 193, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-left-color: var(--primary);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-visual {
    flex: 1;
}

.visual-card,
.phone-mockup,
.calendar-mockup,
.course-mockup,
.pipeline-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    border: 1px solid #f1f5f9;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

/* Visual Placeholders styling */
.fake-browser {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dots {
    display: flex;
    gap: 5px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.address-bar {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    flex: 1;
}

.hero-placeholder {
    height: 100px;
    background: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 15px;
}

.form-placeholder .line {
    height: 8px;
    background: #f1f5f9;
    margin-bottom: 8px;
    width: 80%;
    border-radius: 4px;
}

.form-placeholder .btn-line {
    height: 20px;
    background: var(--primary);
    width: 100px;
    border-radius: 4px;
    margin-top: 15px;
    opacity: 0.5;
}

.phone-mockup {
    width: 280px;
    margin: 0 auto;
    border-radius: 30px;
    border: 8px solid #1e293b;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.notch {
    width: 100px;
    height: 20px;
    background: #1e293b;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.screen {
    padding: 40px 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubble {
    padding: 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    max-width: 80%;
}

.chat-bubble.left {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-bubble.right {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.cal-header {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cal-day {
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
}

.cal-day.active {
    background: var(--primary);
    opacity: 0.2;
}

.cal-event {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    border-left: 3px solid #22c55e;
}

.video-player {
    height: 150px;
    background: #1e293b;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.course-item {
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.pipeline-mockup {
    flex-direction: row;
    gap: 10px;
    background: #f8fafc;
}

.col {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-head {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card.success {
    border-left: 3px solid #22c55e;
}

/* White Label */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.card-box.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.card-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-box.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Support */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.icon-lg {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Community */
.community h2,
.community p {
    color: white;
}

.community .section-sub {
    color: #94a3b8;
}

.comm-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comm-item h3 {
    color: white;
    margin-bottom: 15px;
}

.comm-item p {
    color: #cbd5e1;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(213, 63, 140, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(107, 70, 193, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: 
        0 25px 50px rgba(107, 70, 193, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #ec4899);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(213, 63, 140, 0.4);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 700;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '$';
    font-size: 2rem;
    position: absolute;
    top: 10px;
    left: -25px;
    color: var(--primary);
    font-weight: 600;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-features {
    margin-bottom: 40px;
    text-align: left;
    min-height: 220px;
}

.price-features li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.price-features li strong {
    color: var(--primary);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.pricing-card .btn:hover::before {
    left: 100%;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.6);
}

.pricing-card .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    position: relative;
    z-index: 1;
}

.pricing-card .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.pricing-card .btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.pricing-card .btn-outline:hover::after {
    width: 100%;
}

/* Add subtle pattern to popular card */
.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .pricing .section-header h2 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 40px 30px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .price::before {
        font-size: 1.5rem;
        top: 8px;
        left: -20px;
    }
    
    .pricing .section-header h2 {
        font-size: 2rem;
    }
    
    .price-features {
        min-height: auto;
    }
    
    .price-features li {
        padding-left: 25px;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.copyright {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b !important;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-list {
        display: inline-block;
        text-align: left;
    }

    .engine-steps {
        flex-direction: column;
        gap: 30px;
    }

    .engine-connector {
        display: none;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Simple mobile hide for now */
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}
/* ===== 统一的功能区块样式 ===== */

/* 所有功能区块的图标标签统一 */
.feature-tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    color: var(--primary);
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.2);
    width: 48px;
    height: 48px;
}

.feature-tag-icon:hover {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.15), rgba(213, 63, 140, 0.15));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.25);
}

.icon-combo {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 所有主图标统一颜色 */
.feature-tag-icon i,
.icon-combo i,
.icon-combo .fa-filter,
.icon-combo .fa-gear,
.icon-combo .fa-comments,
.icon-combo .fa-calendar,
.icon-combo .fa-graduation-cap,
.icon-combo .fa-briefcase {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-tag-icon:hover i,
.feature-tag-icon:hover .fa-filter,
.feature-tag-icon:hover .fa-gear,
.feature-tag-icon:hover .fa-comments,
.feature-tag-icon:hover .fa-calendar,
.feature-tag-icon:hover .fa-graduation-cap,
.feature-tag-icon:hover .fa-briefcase {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* 组合图标中的小齿轮 */
.icon-combo .fa-gear {
    font-size: 14px;
    color: var(--accent);
    position: absolute;
    bottom: -2px;
    right: -2px;
    animation: spin 4s linear infinite;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-tag-icon:hover .fa-gear {
    animation-duration: 2s;
    color: var(--accent);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 所有功能项统一 */
.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 16px;
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover .feature-item-icon::before {
    left: 100%;
}

.feature-item:hover .feature-item-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.1);
}

.feature-item-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-item-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-item-content {
    flex: 1;
}

.feature-item-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.3;
}

.feature-item-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== 所有可视化卡片统一 ===== */

.visual-card,
.phone-mockup,
.calendar-mockup,
.course-mockup,
.pipeline-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-row.reverse .visual-card,
.feature-row.reverse .phone-mockup,
.feature-row.reverse .course-mockup {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}

/* 统一顶部边框 */
.visual-card::before,
.phone-mockup::before,
.calendar-mockup::before,
.course-mockup::before,
.pipeline-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.visual-card:hover,
.phone-mockup:hover,
.calendar-mockup:hover,
.course-mockup:hover,
.pipeline-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* ===== 各模拟器的特定样式（保持功能但统一颜色） ===== */

/* 手机聊天模拟器 */
.phone-mockup {
    width: 300px;
    margin: 0 auto;
    border-radius: 35px;
    border: 10px solid #1e293b;
}

.notch {
    width: 120px;
    height: 25px;
    background: #1e293b;
}

.screen {
    padding: 50px 20px 25px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    min-height: 500px;
}

.chat-bubble.right {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
}

/* 日历模拟器 */
.cal-day.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(107, 70, 193, 0);
    }
}

.cal-event {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(213, 63, 140, 0.1));
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

/* 课程模拟器 */
.video-player {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.play-btn {
    background: rgba(107, 70, 193, 0.9);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
}

.play-btn:hover {
    background: rgba(85, 60, 154, 0.9);
    box-shadow: 0 12px 25px rgba(107, 70, 193, 0.6);
}

.play-btn::before {
    border: 2px solid rgba(107, 70, 193, 0.3);
}

.course-item:hover {
    border-color: var(--primary);
}

.course-item:hover::before {
    border-color: var(--primary);
    background: var(--primary);
}

/* 管道模拟器 */
.col:nth-child(1)::after {
    background: linear-gradient(90deg, #3b82f6, var(--primary));
}

.col:nth-child(2)::after {
    background: linear-gradient(90deg, var(--primary), #f59e0b);
}

.col:nth-child(3)::after {
    background: linear-gradient(90deg, #10b981, var(--primary));
}

.card::before {
    background: var(--primary);
}

.card.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(107, 70, 193, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.card.success::before {
    background: var(--primary);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .feature-item-icon {
        align-self: center;
    }
    
    .feature-tag-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .visual-card,
    .phone-mockup,
    .calendar-mockup,
    .course-mockup,
    .pipeline-mockup {
        transform: none;
    }
    
    .feature-item-content h4 {
        font-size: 1.1rem;
    }
}