:root {
    --primary: #4361ee;
    --primary-glow: rgba(67, 97, 238, 0.4);
    --secondary: #3f37c9;
    --accent: #f72585;
    --background: #0f111a;
    --surface: #1a1d2e;
    --surface-glass: rgba(26, 29, 46, 0.7);
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --border: rgba(255, 255, 255, 0.1);
    --success: #2ec4b6;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.badge,
.price-main {
    font-family: var(--font-heading);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    background: linear-gradient(135deg, var(--accent), #ff9eb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism utility */
.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 400px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(247, 37, 133, 0.15);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(247, 37, 133, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.icon-check {
    background: var(--success);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.floating-card strong {
    display: block;
    font-size: 1.1rem;
}

.floating-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--background), var(--surface));
}

.offer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price-main {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}

.price-main .currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-main .period {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 5px;
}

.price-sub {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.price-recurring {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.price-recurring .monthly {
    font-weight: bold;
    color: #fff;
}

.price-recurring .billed-sep {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 97, 238, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    color: var(--text-secondary);
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--accent);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-box {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 20px;
    color: var(--primary);
}

.active-step .step-num {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-box p {
    color: var(--text-secondary);
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: var(--border);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.fine-print {
    padding: 30px;
    font-size: 0.95rem;
}

.fine-print h4 {
    margin-bottom: 15px;
    color: var(--accent);
}

.fine-print ul {
    list-style: none;
}

.fine-print li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.fine-print li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Intake Form Section */
.intake-section {
    padding: 100px 0;
    background: linear-gradient(to top, var(--background), var(--surface));
    position: relative;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.form-container {
    max-width: 800px;
}

.glass-form {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.form-section {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    width: 100%;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: normal;
    font-family: var(--font-body);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 17, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    background: rgba(15, 17, 26, 0.9);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 17, 26, 0.6);
    border: 1px dashed var(--text-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    z-index: 1;
}

.file-upload-wrapper:hover .file-upload-visual {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
    color: #fff;
}

/* Checkboxes & Terms */
.terms-section {
    background: rgba(247, 37, 133, 0.05);
    border-color: rgba(247, 37, 133, 0.2);
}

.terms-description {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: var(--text-secondary);
}

.custom-checkbox strong {
    color: #fff;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(15, 17, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--accent);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-container {
    text-align: center;
    margin-top: 40px;
}

.secure-badge {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Custom Bid Section */
.custom-bid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.05), rgba(67, 97, 238, 0.05));
    border-top: 1px solid var(--border);
    position: relative;
}

.custom-bid-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

.bid-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.bid-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bid-highlight {
    font-weight: 500;
    color: var(--success) !important;
    margin-bottom: 30px !important;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #ff5c93);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.6);
}

.custom-form-container {
    margin-top: 40px;
    border-top: 1px dashed var(--border);
    padding-top: 40px;
    animation: fadeInDown 0.4s ease-out;
}

.custom-form {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-form h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: var(--accent);
    text-align: center;
}

.form-clean {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.form-section-head {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.custom-options-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    background-color: var(--surface);
}

/* Responsive */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .floating-card {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .glass-form {
        padding: 30px 20px;
    }

    .form-section {
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}