:root {
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #10b981;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs for Glassmorphism effect */
.blob-c {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    border-radius: 50%;
}
.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.6) 0%, rgba(15,23,42,0) 70%);
}
.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, rgba(15,23,42,0) 70%);
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 32px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary-small {
    padding: 10px 20px;
    margin-left: 32px;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Glassmorphism Classes */
.glass-card, .glass-container {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step-num:hover {
    background: rgba(10, 132, 255, 0.2);
    border-color: var(--accent);
    color: white;
}

.step-num.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px rgba(10, 132, 255, 0.4);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-graphic {
    flex: 1;
    position: relative;
    height: 400px;
}

.passport-card {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 300px;
    z-index: 2;
    transform: rotate(5deg);
    transition: transform 0.4s ease;
}

.tax-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 300px;
    z-index: 1;
    transform: rotate(-3deg);
    background: rgba(16, 185, 129, 0.1);
    transition: transform 0.4s ease;
}

.hero-graphic:hover .passport-card { transform: rotate(0deg) scale(1.05); }
.hero-graphic:hover .tax-card { transform: rotate(0deg) translateY(10px); }

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #fff;
}

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

/* FAQ */
.faq-section {
    margin-bottom: 120px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 24px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-q {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.faq-a {
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
    margin-top: 16px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.faq-a.open {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Form */
.lead-section {
    max-width: 800px;
    margin: 0 auto 100px auto;
}

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

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

form {
    text-align: left;
}

.input-group {
    margin-bottom: 24px;
}

.input-row {
    display: flex;
    gap: 24px;
}

.input-row .input-group {
    flex: 1;
}

label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

.hidden {
    display: none;
}

#formFeedback {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

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

.feedback-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    nav a { display: none; }
    .input-row { flex-direction: column; gap: 0; }
    .hero-content h1 { font-size: 2.5rem; }
}
