:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #00d4ff;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #334155;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: white;
}

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

html {
    scroll-padding-top: 88px;
}

header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    flex: 1;
}

.logo img {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

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

.nav-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.nav-social a {
    color: var(--text);
    font-size: 1.2rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

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

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7c3aed, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.agents-section {
    padding: 100px 20px;
    background: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.agent-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    min-height: 100%;
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.agent-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.agent-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.agent-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    font-size: 0.95rem;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: var(--text);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* =====================================================
   HOW WE HELP SECTION
===================================================== */
.how-we-help-section {
    padding: 100px 20px;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.help-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
    border-color: var(--primary);
}

.help-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.help-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.help-card p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.help-outcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 14px;
    background: rgba(124, 58, 237, 0.07);
    border-radius: 8px;
    display: inline-block;
}

.custom-solutions-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    border-radius: 14px;
    padding: 36px 40px;
    margin-top: 10px;
}

.custom-solutions-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.custom-solutions-text p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 560px;
}

.custom-solutions-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.custom-solutions-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
    .custom-solutions-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about {
    padding: 100px 20px;
    background: white;
}

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

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.vision-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 212, 255, 0.1));
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 30px 0;
}

.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: white;
}

.contact h2 {
    color: white;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

form input, form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
}

form input::placeholder, form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.flash {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash.error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid var(--border);
    padding: 12px;
    text-align: left;
}

table th {
    background: var(--light);
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 10px 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #about .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    nav {
        border-radius: 16px;
        padding: 10px 16px;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-social {
        gap: 10px;
    }
}