* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        sans-serif;
    line-height: 1.6;
    color: #344256;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #fff, #f3f4f6, #e1e7ef);
    overflow: hidden;
    padding: 4rem 0 6rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #815cd60d, #f974150d);
}

.hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #815cd61a;
    color: #815cd6;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-gradient {
    background: linear-gradient(to right, #815cd6, #f97415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #65758b;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #815cd6, #7147d1);
    color: #fff;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px #815cd61a;
}

.hero-cta:hover {
    background: linear-gradient(to right, #7147d1, #815cd6);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px #815cd626;
}

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.feature-icon.success {
    color: #21c45d;
}

.feature-icon.accent {
    color: #f97415;
}

.feature-icon.primary {
    color: #815cd6;
}

.feature-item span {
    font-weight: 500;
}

.how-it-works-section {
    padding: 4rem 0 6rem;
    background-color: #f3f4f64d;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #65758b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px #815cd61a;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 8px 25px #815cd626;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    background-color: #f97415;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background-color: #815cd61a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    color: #815cd6;
}

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

.step-description {
    color: #65758b;
    line-height: 1.6;
}

.form-section {
    padding: 4rem 0 6rem;
}

.form-card {
    max-width: 64rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 30px #815cd61f;
    overflow: hidden;
}

.form-header {
    padding: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-description {
    font-size: 0.875rem;
    color: #65758b;
}

.vat-form {
    padding: 0 1.5rem 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #6b7280;
    cursor: help;
    transition: color 0.2s ease;
}

.info-icon:hover {
    color: #3b82f6;
}

.info-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    max-width: 250px;
    white-space: normal;
    line-height: 1.3;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.info-icon::after {
    content: "";
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #1f2937;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.info-icon:hover::before,
.info-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #815cd6;
    box-shadow: 0 0 0 2px #815cd61a;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Ticket Fields */
.ticket-item {
    margin-bottom: 12px;
}

.ticket-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-input-wrapper {
    position: relative;
    flex: 1;
}

.price-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-weight: 500;
    z-index: 1;
    pointer-events: none;
}

.price-input-wrapper .ticket-price-input {
    padding-left: 2.5rem;
}

.ticket-name-input {
    flex: 2;
}

.ticket-price-input {
    flex: 1;
    min-width: 120px;
}

.remove-ticket-btn {
    background: hsl(0, 84%, 60%);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 36px;
    height: 36px;
}

.remove-ticket-btn:hover:not(:disabled) {
    background: hsl(0, 84%, 50%);
    transform: translateY(-1px);
}

.remove-ticket-btn:disabled {
    background: hsl(220, 13%, 91%);
    color: hsl(220, 9%, 46%);
    cursor: not-allowed;
    transform: none;
}

.add-ticket-btn {
    background: transparent;
    color: hsl(258, 60%, 60%);
    border: 2px dashed hsl(258, 60%, 60%);
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.add-ticket-btn:hover {
    background: hsl(258, 60%, 60%);
    color: white;
    transform: translateY(-1px);
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #815cd6, #7147d1);
    color: #fff;
    padding: 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit:hover {
    background: linear-gradient(to right, #7147d1, #815cd6);
    transform: translateY(-1px);
}

.submit-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.about-section {
    padding: 4rem 0 6rem;
    background-color: #f3f4f64d;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px #815cd61a;
}

.about-icon-wrapper {
    margin-bottom: 1rem;
}

.about-icon {
    width: 2rem;
    height: 2rem;
}

.about-icon.accent {
    color: #f97415;
}

.about-icon.success {
    color: #21c45d;
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-card-description {
    color: #65758b;
    line-height: 1.6;
}

.ticketlane-cta {
    background: linear-gradient(to right, #815cd60d, #f974150d);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.ticketlane-icon-wrapper {
    margin-bottom: 1.5rem;
}

.ticketlane-icon {
    color: #815cd6;
    margin: 0 auto;
}

.ticketlane-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ticketlane-description {
    font-size: 1.125rem;
    color: #65758b;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.ticketlane-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f97415, #ef6706);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ticketlane-link:hover {
    background: linear-gradient(to right, #ef6706, #f97415);
    transform: translateY(-1px);
}

.external-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer {
    background-color: #f3f4f680;
    padding: 3rem 0;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #65758b;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #65758b;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #815cd6;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #7147d1;
}

.footer-subtext {
    font-size: 0.875rem;
    color: #65758b;
}

.footer-separator {
    height: 1px;
    background-color: #e5e7eb;
    margin: 1.5rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-copyright,
.footer-disclaimer {
    font-size: 0.875rem;
    color: #65758b;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .steps-grid,
    .about-cards,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .ticket-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .ticket-name-input,
    .ticket-price-input {
        flex: none;
    }
}
