@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

:root {
    --color-orange-main: #FF6600;
    --color-orange-hover: #E55A00;
    --color-gray-900: #111827;
    --color-gray-700: #374151;
    --color-gray-600: #4B5563;
    --color-gray-50: #6B7280;
    --color-gray-400: #9CA3AF;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-100: #F3F4F6;
    --color-gray-50: #F9FAFB;
    --color-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-gray-900);
    overflow-x: hidden; 
}

.sticky { position: sticky; }
.top-0 { top: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.max-w-7xl { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-20 { padding-top: 5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-80 { height: 20rem; }
.h-screen { height: 100vh; height: 100svh;  }
.min-h-64 { min-height: 16rem; }
.w-2 { width: 0.5rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-1\/2 { left: 50%; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-white { color: var(--color-white); }
.text-gray-900 { color: var(--color-gray-900); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-200 { color: var(--color-gray-200); }
.text-orange-main { color: var(--color-orange-main); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }

.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-200 { background-color: var(--color-gray-200); }
.bg-gray-400 { background-color: var(--color-gray-400); }
.bg-gray-900 { background-color: var(--color-gray-900); }
.bg-orange-main { background-color: var(--color-orange-main); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-fixed { background-attachment: fixed; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--color-white), var(--color-gray-50)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-black\/40 { --tw-gradient-from: rgba(0, 0, 0, 0.4); }
.via-black\/30 { --tw-gradient-via: rgba(0, 0, 0, 0.3); }
.to-black\/40 { --tw-gradient-to: rgba(0, 0, 0, 0.4); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); }
.to-transparent { --tw-gradient-to: transparent; }

.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-gray-100 { border-color: var(--color-gray-100); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-gray-800 { border-color: #1F2937; }
.border-2 { border-width: 2px; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
.transition-all { transition: all 0.3s ease; }
.backdrop-blur { backdrop-filter: blur(5px); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)); }
.opacity-15 { opacity: 0.15; }
.opacity-75 { opacity: 0.75; }
.hover\:opacity-100:hover { opacity: 1; }
.hidden { display: none; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.gap-1 { gap: 0.25rem; }

.section-container {
    padding: 5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.btn-orange {
    background-color: var(--color-orange-main);
    transition: all 0.3s ease;
}
.btn-orange:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
}
.cursor-not-allowed { cursor: not-allowed; }

#desktop-menu a:hover { color: var(--color-orange-main); }
#lead-capture-form input:focus, #lead-capture-form textarea:focus { border-color: var(--color-orange-main); }


.inclusion-item {
    display: flex;
    position: relative;
    width: 100%;
}

.inclusion-icon-container {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 102, 0, 0.15);
    border: 2px solid var(--color-orange-main);
    color: var(--color-orange-main);
    z-index: 10;
    background-color: #111827; 
}

.inclusion-left {
    justify-content: flex-start;
    padding-right: 50%;
}

.inclusion-right {
    justify-content: flex-end;
    padding-left: 50%;
}

@media (max-width: 767px) {
    
    .text-4xl { font-size: 1.875rem; line-height: 2.25rem; } 
    .text-5xl { font-size: 2.25rem; line-height: 1.1; }
    
    .py-20, .py-24 { padding-top: 3rem; padding-bottom: 3rem; }
    .mb-16, .mb-20 { margin-bottom: 2.5rem; }
    
    .inclusion-left, .inclusion-right {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 0;
    }
    
    .inclusion-item {
        padding-left: 1rem;
    }

    #inclusions-container {
        border-left: 2px dashed rgba(255, 102, 0, 0.4);
        margin-left: 1.75rem;
        padding-left: 0;
    }

    .inclusion-icon-container {
        transform: translateX(-50%); 
        margin-right: -1rem;
        width: 3rem;
        height: 3rem;
    }
    
    .inclusion-item .flex-1 {
        padding-left: 1.5rem;
    }
    
    #inclusions-section svg.absolute {
        display: none;
    }
    
    .bg-fixed {
        background-attachment: scroll;
    }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; } 
    
    .md\:flex { display: flex; }
    .md\:block { display: block; }
    
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    
    .md\:h-\[600px\] { height: 600px; }
    
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:pb-20 { padding-bottom: 5rem; }
    .md\:pt-20 { padding-top: 5rem; }
    .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:max-w-xs { max-width: 20rem; }
    .md\:max-w-sm { max-width: 24rem; }
}

@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
}