:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #FF6B00;
    --accent-hover: #e65c00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin-right: 24px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #222 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* --- Animations & Effects --- */

/* Scroll Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Button Hover (Gradient Flow) */
.btn-primary {
    background: linear-gradient(45deg, #FF6B00, #ff8800, #FF6B00);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background-position: right center;
    /* change the direction of the change here */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.btn-outline:hover::before {
    width: 100%;
}

/* Card Glow Effect */
.card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.1);
}

.card h3 {
    transition: color 0.3s;
}

.card:hover h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

/* Input Fields Animation */
.auth-input {
    transition: all 0.3s;
    border: 1px solid #333;
}

.auth-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
    outline: none;
    transform: scale(1.02);
}

/* User Pill Animation Update */
.user-pill {
    /* Existing properties... keeping core layout */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    /* Subtle tint by default */
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.1);
}

.user-pill:hover {
    background: var(--accent);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
    transform: scale(1.05);
}

.user-pill::before {
    content: '👤';
    font-size: 14px;
}

/* New Sections Styles */
.section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.step h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contacts-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.contact-map {
    flex: 2;
    height: 400px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid #333;
    overflow: hidden;
}

@media (max-width: 768px) {

    .workflow-steps,
    .contacts-wrapper {
        flex-direction: column;
    }

    .contact-map {
        height: 300px;
    }
}