:root {
    --primary: #8B5CF6;
    --primary-foreground: #ffffff;
    --secondary: #0ea5e9;
    --background: #030303;
    --foreground: #ffffff;
    --muted: #a1a1aa;
    --muted-foreground: #71717a;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.05);
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    --titanium-gradient: linear-gradient(to right, #ffffff 0%, #a1a1aa 100%);
    --hero-gradient: radial-gradient(circle at top center, rgba(139, 92, 246, 0.15), transparent 70%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.display-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: -0.05em;
    font-weight: 800;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.text-titanium-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-muted {
    color: var(--muted);
}

.text-sm { font-size: 0.875rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--foreground);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--glass-strong);
    border-color: var(--muted);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
}

.btn-ghost:hover {
    color: var(--foreground);
}

.w-full { width: 100%; }

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    z-index: -2;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.glass-badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-primary { color: var(--primary); width: 1rem; height: 1rem; }

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
}

.glass-strong {
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1.125rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Solution Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.solution-card {
    padding: 2rem;
    border-radius: 1.5rem;
    transition: 0.3s;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.solution-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.solution-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-link i { width: 0.75rem; height: 0.75rem; }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 2fr 1fr; }
}

.contact-form-container {
    border-radius: 1.5rem;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.textarea {
    resize: vertical;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: var(--glass);
    border-color: var(--muted);
}

.alert {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Pricing Cards */
.pricing-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.pricing-header p {
    color: var(--muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.price {
    margin: 2rem 0;
}

.price .currency { font-size: 1.25rem; vertical-align: super; }
.price .value { font-size: 3rem; font-weight: 800; }
.price .period { color: var(--muted); }

.features {
    margin-bottom: 2rem;
    flex: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.features li i { width: 1rem; color: var(--primary); }

/* Rental Section Specific */
.rental-box {
    border-radius: 2rem;
}

.rental-icon-bg {
    position: absolute;
    top: -2rem;
    right: -2rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

.rental-icon-bg i { width: 16rem; height: 16rem; }

.icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

/* Pillar Card */
.pillar-card {
    padding: 1.75rem;
    border-radius: 1.25rem;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.5);
}

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

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    color: var(--muted);
    font-size: 0.875rem;
}

.footer-links ul a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--background);
    z-index: 2000;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: 0.3s;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-menu-btn, .close-menu-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

@media (max-width: 767px) {
    .nav-links { display: none; }
}

/* Misc */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.icon-xl { width: 4rem; height: 4rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.col-span-2 { grid-column: span 2; }
.page-padding { padding-top: 5rem; }
.shadow-glow { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }

/* Form Helpers */
.category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.check-list i { color: var(--primary); width: 1.25rem; }