:root {
    --primary-color: #7c0293;
    --primary-light: #a604c2;
    --primary-dark: #5a016b;
    --accent-color: #e205ab;
    --bg-dark: #05010d;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --text-black: #111111;
    --text-gray: #b3b3b3;
    --text-gray-dark: #666666;
    --gradient-main: linear-gradient(90deg, #a41dd8 0%, #e805b5 100%);
    --font-main: 'Outfit', sans-serif;
    --spacing-container: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typhography */
h1,
h2,
h3 {
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.white-text {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 4, 194, 0.4);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* Adjusted to avoid top collision but allow fitting buttons */
    padding-top: 10px;
    padding-bottom: 30px;
    background: radial-gradient(circle at 50% 30%, #2a0035 0%, var(--bg-dark) 70%);
    text-align: center;
    height: 100vh;
    /* Force container to screen height */
    min-height: 700px;
    /* Prevent it from being too squashed on small screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Vertically center content */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 0.5rem;
    /* Tighter margin */
    color: white;
}

/* Subtitle removed in HTML */

.hero-seo-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    /* Tighter margin */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image-wrapper {
    width: 100%;
    /* Key change: Smaller image to allow buttons to fit */
    max-width: 480px;
    height: auto;
    max-height: 40vh;
    /* Don't take more than 40% of screen height */
    margin: 0.5rem auto 1.5rem;
    /* Tighter vertical margins */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-main {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-footer-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Background Glows */
.glow-bg-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 2, 147, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Sections Global */
.services-section,
.start-project-section {
    padding: 6rem 0;
    /* Gradient from bottom (color) to top (white) */
    background: linear-gradient(to top, #4c0157 0%, #ffffff 70%);
    color: var(--text-black);
}

.software-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-logo {
    display: block;
    margin: 0 auto 2rem;
}

.section-header h2,
.section-title {
    font-size: 2.5rem;
    color: inherit;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-gray-dark);
    margin-bottom: 2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    /* Make cards same height */
    margin-bottom: 3rem;
}

.pricing-card {
    background: #f8f8f8;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
    height: 100%;
    /* Full height of grid cell */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
    z-index: 2;
}

/* Featured Card (Middle) */
.pricing-card.featured {
    background: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 2, 147, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 50px rgba(124, 2, 147, 0.25);
}

.featured-badge {
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem;
    letter-spacing: 1px;
}

/* Card Header */
.card-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--text-black);
    margin-bottom: 1rem;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-start {
    font-size: 1rem;
    margin-right: 5px;
    color: var(--text-gray-dark);
    font-weight: 500;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 2px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-gray-dark);
    margin-left: 5px;
    font-weight: 500;
}

.price-setup {
    font-size: 0.9rem;
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.price-alt {
    font-size: 0.85rem;
    color: #7c0293;
}

/* Card Body */
.card-body {
    padding: .5rem 1.5rem;
    flex-grow: 1;
    /* Pushes footer down */
    text-align: left;
}

.card-support-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 3rem;
    /* Align feature lists somewhat */
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-black);
    line-height: 1.4;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Card Action / Footer */
.card-action {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 0.8rem;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-black);
    background: transparent;
    transition: all 0.3s;
}

.btn-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Primary Button Override for Featured Card */
.pricing-card.featured .btn-primary {
    background: var(--gradient-main);
    border: none;
    color: white;
}

.pricing-card.featured .btn-primary:hover {
    box-shadow: 0 5px 20px rgba(166, 4, 194, 0.4);
}

.card-note {
    font-size: 1rem;
    color: #7c0293;
    margin-top: 0.8rem;
}

/* Info Strip */
.pricing-info-strip {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Software Section */
.software-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.software-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.software-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.software-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.software-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

/* Start Project */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    /* Solid color for visibility */
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(124, 2, 147, 0.3);
}

.step h3 {
    font-size: 1.1rem;
    color: var(--text-black);
    margin: 0;
}

.step-line {
    width: 2px;
    height: 50px;
    background: #ddd;
    margin-top: 30px;
    display: none;
    /* Hidden on mobile default */
}

/* Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group.full-width {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--text-black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 2, 147, 0.1);
}

/* Accordion Styles (Landing Express) */
.accordion-container {
    text-align: left;
    margin-bottom: 1rem;
}

.pricing-details {
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
}

.pricing-details:last-child {
    border-bottom: none;
}

.pricing-summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-black);
    font-size: 0.95rem;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.pricing-summary::-webkit-details-marker {
    display: none;
}

.pricing-summary:hover {
    color: var(--primary-color);
}

.pricing-summary::after {
    content: "+";
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.pricing-details[open] .pricing-summary::after {
    content: "-";
    transform: rotate(180deg);
    /* Or keep + and rotate? content replacement is simpler for +/- */
}

/* Open Animation Content */
.pricing-details[open] .pricing-summary {
    color: var(--primary-color);
    padding-bottom: 0.5rem;
}

.feature-list.small-list {
    margin-top: 0.5rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.feature-list.small-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feature-list.small-list li::before {
    /* Smaller bullet or keep tick? Maybe simple bullet for these nested items to differentiate? prompt said list. keep ticks. */
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 0.8;
    top: 2px;
}

.feature-list.small-list.ordered {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.feature-list.small-list.ordered li {
    display: list-item;
    /* Reset flex */
}

.feature-list.small-list.ordered li::before {
    content: none;
}

.accordion-intro {
    font-size: 0.9rem;
    color: var(--text-gray-dark);
    margin: 0 0 0.5rem 0;
    padding-left: 1rem;
    font-style: italic;
}

/* Footer */
.main-footer {
    padding: 4rem 0 2rem;
    background: #05010d;
    border-top: 1px solid #222;
    text-align: center;
}

.filter-white {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-bottom-text {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #666;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2147483647;
    /* Max Z-Index */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Media Queries */
@media (min-width: 769px) {
    .step-line {
        display: block;
        width: 60px;
        height: 2px;
        background: #ddd;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    /* Mobile Image Big */
    .hero-image-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        /* More space between stacked cards */
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 1rem 0;
        /* Add margin to separate from others if scale removed */
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .process-steps {
        flex-direction: row;
        gap: 1rem;
    }

    .step-line {
        display: block;
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Adjust Floating Button for Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 40px;
        /* Moved up to avoid bottom bars */
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}