/* CSS Variables */
:root {
    --primary: #25D366;
    /* WhatsApp Green */
    --primary-glow: rgba(37, 211, 102, 0.5);
    --bg: #050505;
    --surface: #121212;
    --surface-hover: #1E1E1E;
    --text: #E0E0E0;
    --text-muted: #A0A0A0;
    --danger: #FF4B4B;
    --border: #333333;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-danger {
    color: var(--danger);
}

.brand-color {
    color: var(--primary);
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 30px var(--primary-glow), 0 0 40px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    padding: 0.5rem 0;
    width: 100%;
}

.logo img {
    height: 220px;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 70%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Visual & Chat Bubbles */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
    animation: pulse-orb 4s ease-in-out infinite;
}

@keyframes pulse-orb {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.hero-custom-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Stats Section */
.stats {
    padding: 3rem 0;
    background: var(--surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.stat-card:hover i {
    transform: scale(1.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stat-card p:first-of-type {
    color: #fff;
}

.stat-description {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    letter-spacing: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box.danger {
    background: rgba(255, 75, 75, 0.1);
    color: var(--danger);
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.bg-surface {
    background-color: var(--surface);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #fff;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary);
}

.chat-mockup {
    background: #000;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    max-width: 80%;
    font-size: 0.9rem;
}

.message.received {
    background: #333;
    color: #fff;
    border-bottom-left-radius: 2px;
}

.message.sent {
    background: var(--primary);
    color: #000;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

/* How it Works */
.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.05) 0%, var(--bg) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3), 0 0 30px rgba(37, 211, 102, 0.2);
    border-color: var(--primary);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li.negative i {
    color: var(--danger);
}

.pricing-features li.positive i {
    color: var(--primary);
}

.card-footer-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 200px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Animations Classes */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {

    /* Reduce section padding for mobile */
    .section-padding {
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-visual {
        margin-top: 2rem;
        /* Ensure visual is shown on mobile but adjusted */
        display: flex;
    }

    .visual-container {
        width: 300px;
        height: 450px;
    }

    .ai-orb {
        width: 250px;
        height: 250px;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: -1;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    /* Mobile Logo Sizing - Optimized for Visibility */
    .logo img {
        height: 130px;
    }

    .footer-logo {
        height: 130px;
    }

    .header {
        padding: 0.5rem 0;
    }
}

/* Custom Shape Dividers */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--surface);
}

.custom-shape-divider-bottom.fill-bg .shape-fill {
    fill: var(--bg);
}

.custom-shape-divider-bottom.fill-black .shape-fill {
    fill: #000;
}

/* Adjust sections for absolute dividers */
.hero,
.stats,
.problem,
.solution,
.how-it-works,
.pricing {
    position: relative;
}

/* Subscribe Page Styles */
.subscribe-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 70%);
}

.subscribe-section .section-desc {
    margin: 0 auto 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.order-summary {
    color: var(--text);
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.summary-list strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.summary-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-box {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.guarantee-box i {
    font-size: 2rem;
    color: var(--primary);
}

/* Plan Selector */
.plan-selector {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tabs {
    display: flex;
    background: #000;
    padding: 0.3rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.8rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    background: var(--surface-hover);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tab-btn.highlight-tab {
    color: var(--primary);
}

.tab-btn.highlight-tab.active {
    background: var(--primary);
    color: #000;
}

.badge-sm {
    font-size: 0.7rem;
    background: var(--danger);
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-display {
    margin-bottom: 2rem;
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.price-display .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.cash-price {
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Forms */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #000;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Mobile Responsive Subscription */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .order-summary {
        order: 1;
    }

    .plan-selector {
        order: 0;
    }
}

/* Success Page Styles */
.success-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 70%);
}

.success-section .section-desc {
    margin: 0 auto 3rem;
    position: relative;
    /* Ensure it stacks correctly */
    z-index: 2;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--primary-glow);
}

.btn-giant {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border-radius: 60px;
    margin-top: 1rem;
    white-space: normal;
    /* Allow text wrapping if needed on very small screens */
    height: auto;
}

@media (max-width: 768px) {
    .btn-giant {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }
}

/* New Styles for Hybrid Sales Model */

/* How to Hire Section */
.how-to-hire {
    background: var(--bg);
}

.steps-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.step-mini {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-mini:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.arrow {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
}

.step-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-mini p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
}

.checkbox-group label:hover {
    color: var(--primary);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Select Dropdown */
select.form-input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #000;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
    cursor: pointer;
}

select.form-input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Textarea */
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #000;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Character Count */
.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Implementation Note */
.implementation-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .steps-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .step-mini {
        padding: 1.5rem 1rem;
    }

    .step-mini h4 {
        font-size: 1rem;
    }

    .step-mini p {
        font-size: 0.85rem;
    }
}