/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-light: #e0f2fe;
    --primary-hover: #1d4ed8;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Waves */
.waves-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    background-repeat: repeat-x;
    background-position: bottom;
}
.wave1 {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23bae6fd" fill-opacity="0.5" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,144C672,128,768,128,864,138.7C960,149,1056,171,1152,181.3C1248,192,1344,192,1392,192L1440,192L1440,320L0,320Z"></path></svg>');
    background-size: 1440px 320px;
    animation: wave-anim 25s linear infinite;
    z-index: 1;
}
.wave2 {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%237dd3fc" fill-opacity="0.3" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L0,320Z"></path></svg>');
    background-size: 1440px 320px;
    animation: wave-anim 20s linear infinite reverse;
    z-index: 2;
}
.wave3 {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2338bdf8" fill-opacity="0.15" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,117.3C960,139,1056,181,1152,208C1248,235,1344,245,1392,250.7L1440,256L1440,320L0,320Z"></path></svg>');
    background-size: 1440px 320px;
    animation: wave-anim 35s linear infinite;
    z-index: 3;
}
@keyframes wave-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1440px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.bg-light {
    background-color: rgba(248, 250, 252, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.pt-16 { padding-top: 8rem; }
.pb-6 { padding-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.text-center { text-align: center; }

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.col-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* UI Elements */
.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.badge-light {
    background-color: var(--primary-light);
    color: var(--primary);
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.text-primary { color: var(--primary); }
.text-gradient {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

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

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

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

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224,242,254,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background-color: var(--bg-white);
    border: 12px solid var(--bg-dark);
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-mockup:hover {
    transform: translateY(-10px) rotate(0deg);
}

.phone-screen {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #efeae2; /* typical WA background */
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23dfd5c8" fill-opacity="0.4" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
}

.chat-header {
    background-color: #075E54;
    color: white;
    padding: 1.5rem 1rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23075E54"%3E%3Cpath d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/%3E%3C/svg%3E');
    background-size: cover;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-info strong {
    font-family: 'Outfit';
    font-size: 0.95rem;
    line-height: 1.2;
}

.chat-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    font-size: 0.85rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.75rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    animation: chatPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes chatPop {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-user {
    background-color: #E2F7CB;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-bot {
    background-color: #FFFFFF;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.chat-bubble:nth-child(2) { animation-delay: 0.8s; }
.chat-bubble:nth-child(3) { animation-delay: 1.8s; }
.chat-bubble:nth-child(4) { animation-delay: 2.8s; }
.chat-bubble:nth-child(5) { animation-delay: 4.5s; }

.chat-time {
    display: block;
    font-size: 0.65rem;
    color: #999;
    text-align: right;
    margin-top: 0.3rem;
}

/* WhatsApp Audio Note Style */
.wa-audio-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px 6px 12px;
    min-width: 260px;
}

.wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-play-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #54656f;
    cursor: pointer;
}

.wa-audio-core {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    margin-bottom: 2px;
}

.wa-bar {
    width: 3px;
    background-color: #8696a0;
    border-radius: 2px;
    animation: waWave 1.2s infinite ease-in-out;
}

.chat-user .wa-bar { background-color: #4CAF50; }

.wa-bar:nth-child(2n) { height: 12px; animation-delay: 0.1s; }
.wa-bar:nth-child(3n) { height: 18px; animation-delay: 0.2s; }
.wa-bar:nth-child(4n) { height: 10px; animation-delay: 0.3s; }
.wa-bar:nth-child(5n) { height: 16px; animation-delay: 0.4s; }
.wa-bar:nth-child(6n) { height: 14px; animation-delay: 0.5s; }
.wa-bar:nth-child(7n) { height: 8px; animation-delay: 0.6s; }

@keyframes waWave {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1.1); }
}

.wa-audio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #667781;
}

.chat-user .wa-audio-meta { color: #54656f; }
.wa-duration { font-weight: 500; letter-spacing: 0.5px; }

.processing-text {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.6);
    font-style: italic;
}

.chat-system {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.system-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(22, 101, 52, 0.1);
    padding-bottom: 0.25rem;
}

/* Float Badges Hero */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 6s ease-in-out infinite;
}

.badge-1 { top: 20%; right: -20px; animation-delay: 0s; }
.badge-2 { bottom: 20%; left: -40px; animation-delay: 3s; }

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

/* Services */
.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.08);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.75);
}

.card-title {
    font-size: 1.25rem;
    margin: 1rem 0;
}

.card-text {
    color: var(--text-muted);
}

/* Benefits Section */
.benefit-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.08);
    background: rgba(255, 255, 255, 0.8);
}
.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.icon-wrapper svg {
    color: var(--primary);
}
.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.benefit-card p {
    color: var(--text-muted);
}

/* Process Section */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

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

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.08);
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.6;
}
.testimonial-card strong {
    color: var(--primary);
    font-size: 0.9rem;
    display: block;
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.pro {
    background: rgba(15, 23, 42, 0.85); /* Dark transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 16px 40px 0 rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.pro h3 {
    color: white;
}

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

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-card.pro .pricing-features li::before {
    color: #10b981;
}

.pricing-card.pro .pricing-features li {
    border-color: rgba(255,255,255,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding auto;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: white;
    padding: 6rem 0;
}

.cta-title {
    color: white;
    font-size: 3rem;
}

.footer {
    background: var(--bg-dark);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations & Reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container, .container-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .phone-mockup {
        transform: rotate(0);
    }
    
    .floating-badge {
        display: none;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
}
