:root {
    --primary: #4F46E5; /* Indigo 600 */
    --primary-hover: #4338CA;
    --secondary: #10B981; /* Emerald 500 */
    --bg-dark: #0f172a; /* Slate 900 */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Glassmorphism Utilities */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.dark-glass {
    background: rgba(0, 0, 0, 0.2);
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.logo svg {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

nav a:hover {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.3) 0%, rgba(15,23,42,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges svg {
    width: 20px;
    height: 20px;
}

/* Mockup CSS art */
.hero-image {
    padding: 32px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.permit-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    color: #1e293b;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.mockup-header {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.mockup-body {
    display: flex;
    gap: 24px;
}

.photo-placeholder {
    width: 100px;
    height: 130px;
    background: #cbd5e1;
    border-radius: 8px;
}

.lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
}

.line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    width: 100%;
}

.line.short {
    width: 60%;
}

/* Section Common */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 32px;
    position: relative;
    padding-left: 40px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 800;
}

.benefits-list strong {
    font-size: 1.2rem;
    color: white;
    display: block;
    margin-bottom: 8px;
}

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

.benefits-visual {
    padding: 40px;
    text-align: center;
}

.benefits-visual h3 {
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.languages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.languages span {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

/* Apply Section */
.apply-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e1b4b 100%);
}

.text-center {
    text-align: center;
}

.apply-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 12px;
}

.form-group {
    display: flex;
    gap: 8px;
}

.form-group input {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.form-group button {
    border-radius: 8px;
    padding: 16px 32px;
}

.form-note {
    font-size: 0.8rem !important;
    margin: 16px 0 0 !important;
    opacity: 0.7;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    background: #0f172a;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        display: none;
    }
    
    .form-group {
        flex-direction: column;
    }
}
