:root {
    --background: hsl(160, 60%, 98%);
    --foreground: hsl(160, 30%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(160, 30%, 15%);
    --primary: hsl(152, 70%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(152, 65%, 60%);
    --primary-dark: hsl(152, 75%, 35%);
    --secondary: hsl(200, 85%, 50%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --secondary-light: hsl(200, 80%, 65%);
    --secondary-dark: hsl(200, 90%, 40%);
    --muted: hsl(160, 30%, 96%);
    --muted-foreground: hsl(160, 15%, 45%);
    --accent: hsl(175, 65%, 50%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(160, 25%, 88%);
    --input: hsl(160, 25%, 92%);
    --ring: hsl(152, 70%, 45%);
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(152, 70%, 45%) 0%, hsl(200, 85%, 50%) 100%);
    --gradient-light: linear-gradient(180deg, hsl(160, 60%, 98%) 0%, hsl(175, 50%, 96%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(160, 30%, 97%) 100%);
    --shadow-sm: 0 2px 8px hsla(152, 70%, 45%, 0.08);
    --shadow-md: 0 4px 16px hsla(152, 70%, 45%, 0.12);
    --shadow-lg: 0 8px 32px hsla(152, 70%, 45%, 0.16);
    --shadow-glow: 0 0 24px hsla(152, 70%, 45%, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-gradient-light {
    background: var(--gradient-light);
}

.container {
    width: 100%;
    max-width: 1200px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p-8 {
    padding: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-16 {
    margin-top: 4rem;
}

.text-center {
    text-align: center;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-6 {
    gap: 1.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.1;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.2;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.5;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}


.text-gradient-primary {
    background: linear-gradient(135deg, hsl(152, 70%, 45%) 0%, hsl(200, 85%, 50%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: white;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.icon-sparkles,
.icon-check,
.icon-shield,
.icon-clock {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.animated-worker {
    position: relative;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
}

.worker-container {
    position: relative;
}

.shine-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s ease-in-out infinite;
}

.worker-image {
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1);
    transition: all 1s ease;
    border-radius: 20px;
box-shadow: var(--shadow-glow);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 1.5rem;
    left: 1.5rem;
}

.badge-2 {
    bottom: 1.5rem;
    right: 1.5rem;
    animation-delay: 0.5s;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.circle-1 {
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background: hsla(152, 70%, 45%, 0.1);
    filter: blur(2rem);
}

.circle-2 {
    bottom: -1rem;
    right: -1rem;
    width: 8rem;
    height: 8rem;
    background: hsla(200, 85%, 50%, 0.1);
    filter: blur(2rem);
    animation-delay: 1s;
}

.pricing-calculator {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.slider-container {
    width: 100%;
    padding: 0.5rem 0;
}

.custom-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--secondary);
    outline: none;
    -webkit-appearance: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.package-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: hsla(152, 70%, 45%, 0.5);
    box-shadow: var(--shadow-md);
}

.package-card.active {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    background: var(--gradient-card);
}

.radio-wrapper {
    display: flex;
    gap: 0.75rem;
}

.radio-wrapper input[type="radio"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    cursor: pointer;
    outline: none;
    border: none;
}

.radio-wrapper input[type="radio"]:focus {
    outline: none;
    box-shadow: none;
}

.package-content {
    flex: 1;
}

.package-title {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin-bottom: 0.5rem;
}

.package-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.package-selected {
    display: none;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.package-card.active .package-selected {
    display: flex;
    animation: scale-in 0.4s ease-out;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price-info {
    text-align: center;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-header svg {
    width: 1.5rem;
    height: 1.5rem;
}

.price-amount {
    text-align: center;
}

.opacity-90 {
    opacity: 0.9;
}

.tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.tier-card.active {
    border: 2px solid var(--primary);
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    opacity: 1;
}

.tier-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.tier-range {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0.25rem 0 0 0;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    background: var(--card);
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(152, 70%, 45%, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: calc(var(--radius) - 2px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-border {
    border-color: var(--border);
}

.pt-6 {
    padding-top: 1.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
    margin: 0;
}

footer {
    background: var(--card);
}

.bg-card {
    background: var(--card);
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(150%);
    transition: transform 0.3s ease;
    z-index: 9999;
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-scale-in {
    animation: scale-in 0.4s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .md-text-7xl {
        font-size: 4.5rem;
    }
    
    .md-text-5xl {
        font-size: 3rem;
    }
    
    .md-text-4xl {
        font-size: 2.25rem;
    }
    
    .md-text-2xl {
        font-size: 1.5rem;
    }
    
    .md-text-base {
        font-size: 1rem;
    }
    
    .md-py-20 {
        padding-top: 5rem;
    }
    
    .md-py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .md-py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .price-display {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .price-info {
        text-align: left;
    }
}

