:root {
    --bg-main: #151e3c;
    /* Slate 950 */
    --bg-secondary: #0f172a;
    /* Slate 900 */
    --bg-card: rgba(30, 41, 59, 0.5);
    /* Slate 800 with opacity */
    --clr-text: #f8fafc;
    --clr-text-muted: #94a3b8;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-accent: #3b82f6;
    --clr-accent-hover: #60a5fa;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Base Setup */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

.lead {
    font-size: 1.35rem;
    color: #cbd5e1;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Actions & Social Links */
.about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-customer-login {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-accent);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-customer-login:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--clr-accent);
    transform: translateY(-2px);
}

/* LAYOUT: Top Section (Logo/About + Products) */
.layout-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding-top: 8rem;
    padding-bottom: 6rem;
    flex: 1;
}

/* Left: About */
.about-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-wrapper {
    margin-bottom: 3rem;
}

.main-logo {

    width: 160px;
    filter: brightness(0) invert(1);
}

/* Right: Products */
.products-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-badge {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
    margin-bottom: 2rem;
}

.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.prod-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.prod-card:hover {
    background: rgba(255, 255, 255, 0.05);
    /* transform: translateY(-5px); */
    border-color: rgba(255, 255, 255, 0.15);
}

.prod-icon {
    height: 50px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: fit-content;
}

.prod-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Specifically handling logos to be legible */
.dark-wrap {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
}

.light-wrap {
    background: #ffffff;
    padding: 0.5rem 1rem;
}

.icon-wrap {
    color: #fff;
}

.text-logo {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.5rem;
}

.prod-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.prod-details span {
    font-size: 0.875rem;
    color: var(--clr-accent);
    font-weight: 500;
}

/* LAYOUT: Bottom Section (Contact) */
.contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--clr-border);
    padding: 6rem 0;
}

.layout-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

/* Left: Contact Info */
.info-items {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.info-item .value:hover {
    color: var(--clr-accent);
}

/* Right: Form */
.contact-form-wrap {
    background: var(--bg-main);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--clr-border);
}

.clean-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

input,
textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--clr-border);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: #64748b;
}

.btn-submit {
    background: var(--clr-accent);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--clr-border);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .layout-top,
    .layout-bottom {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .layout-top {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    .input-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .contact-form-wrap {
        padding: 2rem;
    }

    h1 {
        font-size: 2.25rem;
    }
}