/* ===== CSS Variables ===== */
:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-gray-light: #d1d5db;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --gradient-green: linear-gradient(135deg, #22c55e, #10b981);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --gradient-orange: linear-gradient(135deg, #f97316, #ef4444);
    --gradient-pink: linear-gradient(135deg, #ec4899, #f43f5e);
    --gradient-yellow: linear-gradient(135deg, #eab308, #f59e0b);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

/* ===== Background Orbs ===== */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-green);
    top: -10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-blue);
    bottom: 10%;
    right: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-purple);
    top: 50%;
    left: 40%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 16px;
}

.btn-block {
    width: 100%;
}

.btn .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close i {
    width: 28px;
    height: 28px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-links a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray-light);
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.pulse-dot {
    position: relative;
    width: 10px;
    height: 10px;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-gray-light);
}

.pill i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-green);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: #facc15;
    fill: #facc15;
}

.proof-text p {
    font-size: 14px;
    color: var(--text-gray);
}

.proof-text strong {
    color: var(--text-white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(34, 197, 94, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.dashboard-header p {
    font-size: 14px;
    color: var(--text-gray);
}

.trend-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
}

.trend-badge i {
    width: 20px;
    height: 20px;
}

.revenue-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.revenue-card .label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.revenue-card .amount {
    font-size: 36px;
    font-weight: 700;
}

.revenue-breakdown {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.revenue-breakdown span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green { background: var(--primary); }
.dot.yellow { background: #facc15; }

.recent-payments {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
}

.payment-info {
    flex: 1;
}

.payment-info .brand {
    font-weight: 600;
    font-size: 14px;
}

.payment-info .amount {
    font-size: 13px;
    color: var(--text-gray);
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.paid {
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
}

.status.pending {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.invoices {
    bottom: -20px;
    left: -40px;
}

.floating-card.gst {
    top: -20px;
    right: -20px;
    animation-delay: 2s;
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon.purple {
    background: var(--gradient-purple);
}

.floating-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.floating-card .number {
    font-size: 24px;
    font-weight: 700;
}

.floating-card .label {
    font-size: 12px;
    color: var(--text-gray);
}

.floating-card .flag {
    font-size: 24px;
}

.floating-card .title {
    font-size: 14px;
    font-weight: 600;
}

.floating-card .subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-gray);
    margin-top: 8px;
}

/* ===== Sections Common ===== */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.green { background: var(--gradient-green); }
.feature-icon.blue { background: var(--gradient-blue); }
.feature-icon.purple { background: var(--gradient-purple); }
.feature-icon.orange { background: var(--gradient-orange); }
.feature-icon.pink { background: var(--gradient-pink); }
.feature-icon.yellow { background: var(--gradient-yellow); }

.feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.additional-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.additional-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 24px;
}

.additional-feature i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.additional-feature span {
    color: var(--text-gray-light);
}

/* ===== How It Works ===== */
.how-it-works {
    background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.05), transparent);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step-card {
    flex: 1;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: rgba(34, 197, 94, 0.5);
    padding-top: 80px;
}

.step-arrow i {
    width: 32px;
    height: 32px;
}

/* ===== Pricing Section ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.popular .pricing-icon {
    background: var(--gradient-green);
}

.pricing-icon i {
    width: 28px;
    height: 28px;
    color: var(--text-gray);
}

.pricing-card.popular .pricing-icon i {
    color: white;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: 800;
}

.pricing-price .period {
    color: var(--text-gray);
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-gray-light);
    font-size: 15px;
}

.pricing-features i {
    width: 18px;
    height: 18px;
    color: var(--text-gray);
}

.pricing-card.popular .pricing-features i {
    color: var(--primary);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    margin-top: 40px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.quote-icon {
    margin-bottom: 16px;
}

.quote-icon i {
    width: 32px;
    height: 32px;
    color: rgba(34, 197, 94, 0.3);
}

.testimonial-text {
    color: var(--text-gray-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    width: 16px;
    height: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--text-gray);
}

.author-followers {
    font-size: 12px;
    color: var(--primary);
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text-white);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 48px;
}

.faq-contact p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: var(--primary-light);
}

.whatsapp-link i {
    width: 20px;
    height: 20px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand > p {
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact i {
    width: 18px;
    height: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-header {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    padding: 32px 32px 24px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.modal-badge i {
    width: 18px;
    height: 18px;
}

.modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-gray);
}

.progress-bar {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.progress {
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-bar::before,
.progress-bar::after {
    content: '';
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.progress-bar::before {
    display: none;
}

.modal-form {
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-white);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: #6b7280;
}

.input-group {
    display: flex;
}

.input-prefix {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 14px 16px;
    color: var(--text-gray);
}

.input-group input {
    border-radius: 0 12px 12px 0;
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--border-hover);
}

.option-btn.selected {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary);
}

.option-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.option-desc {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.pill-btn:hover {
    border-color: var(--border-hover);
}

.pill-btn.selected {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-buttons .btn {
    flex: 1;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success State */
.success-content {
    padding: 48px 32px;
    text-align: center;
}

.success-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-icon i {
    width: 48px;
    height: 48px;
    color: white;
}

.success-content h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.success-content > p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.position-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.position-box .label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.position-box .position {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-buttons .btn {
    flex: 1;
}

/* ===== WhatsApp Popup ===== */
.whatsapp-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
}

.whatsapp-close {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.whatsapp-close i {
    width: 14px;
    height: 14px;
}

.whatsapp-btn {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-btn .pulse {
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    width: 20px;
    height: 20px;
    color: white;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    color: white;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.chat-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 4px;
}

.chat-close i {
    width: 20px;
    height: 20px;
}

.chat-body {
    padding: 16px;
}

.chat-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px 16px 16px 4px;
    padding: 14px;
    margin-bottom: 16px;
}

.chat-message p {
    font-size: 14px;
    color: var(--text-gray-light);
}

.quick-replies {
    margin-bottom: 16px;
}

.quick-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.quick-replies button {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    color: var(--text-gray-light);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.quick-replies button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-input {
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-white);
    font-size: 14px;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-input input::placeholder {
    color: #6b7280;
}

.chat-input button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    opacity: 0.9;
}

.chat-input button i {
    width: 20px;
    height: 20px;
    color: white;
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-color: rgba(34, 197, 94, 0.3);
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.2);
    color: var(--primary);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.toast-icon i {
    width: 14px;
    height: 14px;
}

.toast-message {
    flex: 1;
    font-size: 14px;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
}

.toast-close i {
    width: 16px;
    height: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-wrap: wrap;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-card {
        flex: 1 1 45%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        flex: 1 1 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .cta-box {
        padding: 48px 24px;
    }
    
    .cta-box h2 {
        font-size: 26px;
    }
    
    .whatsapp-popup {
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-chat {
        width: calc(100vw - 32px);
        right: -8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .feature-pills {
        gap: 8px;
    }
    
    .pill {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .modal {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}