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

:root {
    --primary: #00D563;
    --primary-dark: #00A84F;
    --primary-light: #E6FFF4;
    --secondary: #0A2E36;
    --accent: #5B5FFF;
    --accent-purple: #8B5CF6;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

/* Mobile First: Base container for mobile */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Story Script', cursive;
    font-weight: 400;
    font-size: 24px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Hide nav links on mobile by default */
.nav-links {
    display: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #00D563 0%, #00A84F 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 213, 99, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 213, 99, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* Email Forms - Mobile First */
.nav-email-form {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-email-form input {
    padding: 8px 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.nav-email-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.nav-email-form .btn {
    padding: 8px 14px;
    font-size: 13px;
}

.hero-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.email-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.email-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 213, 99, 0.2);
}

.email-input-wrapper input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.email-input-wrapper input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.email-input-wrapper .btn {
    width: 100%;
}

.cta-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-email-form .email-input-wrapper {
    background: white;
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-email-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: var(--text-primary);
}

.cta-email-form input::placeholder {
    color: var(--text-secondary);
}

/* Hero Section - Mobile First */
.hero {
    position: relative;
    padding: 90px 0 50px;
    overflow: hidden;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(0, 213, 99, 0.08) 0%, rgba(0, 168, 79, 0.08) 100%);
    border: 1.5px solid rgba(0, 213, 99, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 12px;
}

.hero-title {
    font-family: 'Story Script', cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    text-shadow: 0 2px 20px rgba(0, 213, 99, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #00D563 0%, #5B5FFF 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat {
    text-align: center;
    padding: 0 8px;
}

.stat:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

/* Phone Mockup - Mobile First */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.phone-frame {
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1f1f1f;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #E5DDD5;
    border-radius: 32px;
    overflow: hidden;
}

.whatsapp-chat {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--primary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 32px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667EEA, #764BA2);
    border-radius: 50%;
}

.chat-avatar-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid white;
    background: white;
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
}

.chat-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.message {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: messageAppear 0.4s ease forwards;
}

@keyframes messageAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mensaje 1 (sent) - Saludo */
.chat-messages>.message:nth-child(1) {
    animation-delay: 0.5s;
}

/* Mensaje 2 (sent) - Pregunta con botones */
.chat-messages>.message:nth-child(2) {
    animation-delay: 1.5s;
}

/* Mensaje 3 (received) - Usuario elige */
.chat-messages>.message:nth-child(3) {
    animation-delay: 2.8s;
}

/* Typing indicator */
.chat-messages>.typing-indicator:nth-child(4) {
    animation-delay: 3.5s;
}

/* Mensaje 4 (sent) - Servicios con botones */
.chat-messages>.message:nth-child(5) {
    animation-delay: 4.7s;
}

.message.received {
    background: white;
    align-self: flex-start;
    border-radius: 0 8px 8px 8px;
}

.message.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-radius: 8px 0 8px 8px;
}

.message-text {
    margin-bottom: 4px;
    line-height: 1.4;
}

.message-time {
    font-size: 10px;
    color: #667781;
    text-align: right;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: white;
    align-self: flex-start;
    border-radius: 0 8px 8px 8px;
    max-width: 70%;
    opacity: 0;
}

.typing-indicator.active {
    animation: typingAppear 0.3s ease forwards;
}

@keyframes typingAppear {
    to {
        opacity: 1;
    }
}


.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #90949C;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

/* Bot Buttons */
.bot-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    width: 100%;
}

.bot-btn {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #075E54;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.bot-btn:hover {
    background: #F0F7F4;
    border-color: #25D366;
}

.bot-btn.service-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
}

.service-name {
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
}

.service-price {
    font-size: 11px;
    color: #64748B;
    font-weight: 400;
}

.bot-btn.highlight {
    background: #E6FFF4;
    border-color: #25D366;
}

.bot-btn.highlight .service-name {
    color: #00A84F;
}

/* Floating Cards - Hidden on mobile */
.floating-card {
    display: none;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    font-size: 20px;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 213, 99, 0.15) 0%, rgba(91, 95, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Sections - Mobile First */
section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 32px;
    padding: 0 8px;
}

.section-title {
    font-family: 'Story Script', cursive;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    padding: 28px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 213, 99, 0.15);
    border-color: var(--primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 15px;
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.ai-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-orb {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
}

.ring-2 {
    width: 240px;
    height: 240px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 10s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orb-core {
    position: relative;
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-text {
    text-align: center;
}

.ai-title {
    font-family: 'Story Script', cursive;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.ai-description {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.ai-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ai-feature-item p {
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.6;
}

/* Admin Section */
.admin-section {
    background: var(--bg-light);
}

.admin-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.admin-text {
    text-align: center;
}

.admin-title {
    font-family: 'Story Script', cursive;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.admin-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.admin-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.admin-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.admin-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.admin-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mockup-header {
    background: linear-gradient(135deg, #667EEA, #764BA2);
    padding: 16px;
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-content {
    padding: 32px;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 14px;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--primary);
}

.chart-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
}

/* Use Cases */
.use-cases {
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.use-case-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.use-case-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 213, 99, 0.15);
}

.use-case-emoji {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}

.use-case-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.3;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 15px;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(91, 95, 255, 0.12);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.18);
    background: linear-gradient(180deg, rgba(0, 213, 99, 0.02) 0%, white 100%);
}

.pricing-card.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.amount.custom {
    font-size: 40px;
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.pricing-note {
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(102, 126, 234, 0.05));
    border-radius: 16px;
    border: 2px solid var(--primary-light);
    text-align: center;
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.pricing-note strong {
    color: var(--primary);
    font-size: 17px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Story Script', cursive;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.cta-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.cta-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 80px 0 32px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Tablet: 768px and up */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Navigation */
    .nav-content {
        height: 72px;
    }

    .logo {
        font-size: 28px;
        gap: 12px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        display: flex;
        gap: 24px;
        list-style: none;
    }

    .nav-email-form input {
        min-width: 180px;
        font-size: 14px;
        padding: 10px 16px;
    }

    .nav-email-form .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 80px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title {
        font-size: 52px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 19px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .hero-email-form {
        max-width: 500px;
    }

    .email-input-wrapper {
        flex-direction: row;
        gap: 8px;
    }

    .email-input-wrapper .btn {
        width: auto;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .stat {
        text-align: left;
        padding: 0;
    }

    .stat:not(:last-child) {
        border-right: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }

    /* Sections */
    .section-header {
        padding: 0;
    }

    /* Features */
    .feature-card {
        text-align: left;
    }

    /* Sections */
    section {
        padding: 80px 0;
    }

    .section-header {
        max-width: 600px;
        margin-bottom: 56px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 18px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    /* AI Section */
    .ai-title {
        font-size: 40px;
    }

    .ai-description {
        font-size: 17px;
    }

    /* Admin Section */
    .admin-title {
        font-size: 40px;
    }

    .admin-description {
        font-size: 17px;
    }

    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing */
    .pricing-grid {
        gap: 28px;
    }

    /* CTA */
    .cta-title {
        font-size: 40px;
    }

    .cta-description {
        font-size: 18px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop: 1024px and up */
@media (min-width: 1024px) {
    /* Navigation */
    .nav-links {
        gap: 32px;
    }

    .nav-email-form input {
        min-width: 200px;
    }

    /* Hero Section */
    .hero {
        padding: 160px 0 100px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-image {
        order: 1;
    }

    .hero-title {
        font-size: 68px;
        margin-bottom: 32px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-cta {
        flex-direction: row;
        gap: 16px;
        width: auto;
    }

    .btn-large {
        width: auto;
    }

    .hero-stats {
        gap: 48px;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }

    /* Floating Cards */
    .floating-card {
        display: flex;
        position: absolute;
        background: white;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        animation: cardFloat 4s ease-in-out infinite;
    }

    .card-1 {
        top: 10%;
        right: -20%;
        animation-delay: 0s;
    }

    .card-2 {
        bottom: 15%;
        left: -25%;
        animation-delay: 1s;
    }

    /* Sections */
    section {
        padding: 100px 0;
    }

    .section-header {
        max-width: 700px;
        margin-bottom: 64px;
    }

    .section-title {
        font-size: 56px;
        margin-bottom: 24px;
    }

    .section-description {
        font-size: 20px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* AI Section */
    .ai-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .ai-text {
        text-align: left;
    }

    .ai-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .ai-description {
        font-size: 18px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    /* Admin Section */
    .admin-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .admin-text {
        text-align: left;
    }

    .admin-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .admin-description {
        font-size: 18px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        max-width: 1200px;
    }

    .pricing-card {
        padding: 40px;
    }

    .pricing-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }

    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-8px);
    }

    /* CTA */
    .cta-title {
        font-size: 52px;
        margin-bottom: 24px;
    }

    .cta-description {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        width: auto;
    }

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

/* Large Desktop: 1280px and up */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 80px;
    }

    .section-title {
        font-size: 64px;
    }
}