:root {
    --primary: #d6006e;
    --primary-hover: #ff1a8c;
    --primary-glow: rgba(214, 0, 110, 0.4);
    --bg-dark: #0f0c1b;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-glow: #7928ca;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animated Glows */
.bg-glow-1, .bg-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}
.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: var(--primary);
    opacity: 0.3;
}
.bg-glow-2 {
    top: 400px;
    right: -100px;
    background: var(--accent-glow);
    opacity: 0.25;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(214, 0, 110, 0.15);
    border: 1px solid rgba(214, 0, 110, 0.3);
    color: #ff66b2;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #d6006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    padding: 18px 38px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(214, 0, 110, 0.6);
}

/* Glass Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 0, 110, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: rgba(214, 0, 110, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

/* Step Section */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 70px 0 15px;
}

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

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    background: linear-gradient(135deg, var(--primary), var(--accent-glow));
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    width: 100%;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #fff;
}

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

/* Accountant Highlight Box */
.accountant-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.accountant-header {
    color: #10b981;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-list {
    list-style: none;
    margin-top: 15px;
}

.contact-list li {
    margin-bottom: 8px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: var(--primary);
    width: 20px;
}

.contact-list a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary-hover);
}

/* Image styling */
.info-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.highlight-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    color: #fff;
    font-family: monospace;
}

/* Alert/Info Box */
.alert-box {
    background: rgba(214, 0, 110, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.alert-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Code highlight box */
.code-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
}

.code-box ul {
    list-style: none;
}

.code-box li {
    margin-bottom: 8px;
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.code-box li strong {
    color: #ff66b2;
}

.highlight-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Help Section */
.contact-section {
    background: linear-gradient(135deg, rgba(214,0,110,0.1), rgba(121,40,202,0.1));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--primary);
    background: rgba(214,0,110,0.15);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.email-placeholder {
    display: inline-block;
    background: rgba(0,0,0,0.4);
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px dashed var(--primary);
    color: #ff66b2;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
    margin-top: 80px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .step-card { flex-direction: column; }
    .contact-section { flex-direction: column; text-align: center; padding: 30px 20px; }
}