/* ================================================= */
/* EDDYAGRO CORE STYLESHEET */
/* ================================================= */

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

/* ================================================= */
/* ROOT */
/* ================================================= */

:root {

    --bg: #101114;

    --panel: #18191D;
    --panel-light: #1E2025;

    --border: #2A2D34;
    --border-hover: #3A3F49;

    --text: #ECECE7;
    --muted: #9D9D96;

    --accent: #7EAD4D;

    --max-width: 1320px;
}

/* ================================================= */
/* GLOBAL */
/* ================================================= */

html {

    scroll-behavior: smooth;
}

body {

    background: var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}

a {

    color: inherit;

    text-decoration: none;
}

img {

    display: block;

    max-width: 100%;
}

.container {

    width: 100%;
    max-width: var(--max-width);

    margin: 0 auto;

    padding: 0 40px;
}

/* ================================================= */
/* NAVBAR */
/* ================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 78px;

    z-index: 1000;

    display: flex;
    align-items: center;

    background: rgba(10, 10, 12, 0.76);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-inner {

    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.logo {

    height: 40px;

    width: auto;
}

.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;

    font-size: 14px;

    color: var(--muted);
}

.nav-links a {

    transition: 0.18s ease;
}

.nav-links a:hover {

    color: var(--text);
}

.nav-button {

    padding: 10px 16px;

    border: 1px solid var(--border);

    transition: 0.18s ease;
}

.nav-button:hover {

    border-color: var(--accent);

    background: rgba(126, 173, 77, 0.05);
}

/* ================================================= */
/* HERO */
/* ================================================= */

.hero-landing {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero-bg-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 8, 10, 0.45),
            rgba(8, 8, 10, 0.72),
            rgba(16, 17, 20, 1)
        );
}

.hero-content-wrapper {

    position: relative;

    z-index: 2;
}

.hero-content {

    max-width: 760px;

    padding-top: 120px;
}

.hero-label,
.section-label {

    color: var(--accent);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 24px;
}

.hero-title {

    font-size: 76px;

    line-height: 0.94;

    letter-spacing: -4px;

    margin-bottom: 30px;

    max-width: 760px;
}

.hero-text {

    max-width: 620px;

    color: #D2D2CC;

    font-size: 18px;

    line-height: 1.9;
}

.hero-actions {

    display: flex;

    gap: 16px;

    margin-top: 42px;
}

.primary-button,
.secondary-button {

    transition: 0.18s ease;
}

.primary-button {

    background: var(--accent);

    color: #111111;

    padding: 15px 22px;

    font-size: 14px;

    font-weight: 600;
}

.primary-button:hover {

    opacity: 0.92;
}

.secondary-button {

    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    padding: 15px 22px;
}

.secondary-button:hover {

    border-color: var(--accent);

    background: rgba(126, 173, 77, 0.04);
}

/* ================================================= */
/* SECTIONS */
/* ================================================= */

.section {

    position: relative;

    z-index: 5;

    background: var(--bg);

    padding-top: 120px;
    padding-bottom: 120px;
}

.section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,0.08),
            transparent
        );
}

.section-title {

    font-size: 54px;

    line-height: 1.02;

    letter-spacing: -2px;

    max-width: 820px;

    margin-bottom: 72px;
}

.dark-section {

    background: #131417;
}

/* ================================================= */
/* GRID SYSTEMS */
/* ================================================= */

.card-grid,
.product-grid,
.info-grid,
.team-grid {

    display: grid;

    gap: 24px;
}

.card-grid {

    grid-template-columns: repeat(3, 1fr);
}

.product-grid,
.team-grid {

    grid-template-columns: repeat(2, 1fr);
}

.info-grid {

    grid-template-columns: repeat(3, 1fr);
}

/* ================================================= */
/* CARDS */
/* ================================================= */

.card,
.product-card,
.info-panel,
.team-card {

    position: relative;

    background: var(--panel);

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.card:hover,
.product-card:hover,
.info-panel:hover,
.team-card:hover {

    transform: translateY(-2px);

    border-color: var(--border-hover);
}

.card::before,
.product-card::before,
.info-panel::before,
.team-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(126, 173, 77, 0.24),
            transparent
        );
}

/* ================================================= */
/* STANDARD CARD */
/* ================================================= */

.card {

    padding: 34px;

    min-height: 240px;
}

.card-title {

    font-size: 24px;

    margin-bottom: 20px;
}

.card-text {

    color: var(--muted);

    line-height: 1.9;

    font-size: 15px;
}

/* ================================================= */
/* PRODUCT CARDS */
/* ================================================= */

.product-image {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-bottom: 1px solid var(--border);
}

.product-content {

    padding: 30px;
}

.product-title {

    font-size: 30px;

    margin-bottom: 10px;
}

.product-subtitle {

    color: var(--accent);

    font-size: 14px;

    margin-bottom: 22px;
}

.product-text {

    color: var(--muted);

    line-height: 1.9;
}

/* ================================================= */
/* INFO PANELS */
/* ================================================= */

.info-panel {

    padding: 34px;

    min-height: 240px;
}

.info-number {

    color: var(--accent);

    font-size: 13px;

    margin-bottom: 20px;
}

.info-title {

    font-size: 24px;

    margin-bottom: 18px;
}

.info-text {

    color: var(--muted);

    line-height: 1.9;
}

/* ================================================= */
/* ABOUT */
/* ================================================= */

.about-section {

    padding-top: 140px;
    padding-bottom: 140px;
}

.about-title {

    font-size: 64px;

    line-height: 0.96;

    letter-spacing: -3px;

    max-width: 900px;

    margin-bottom: 70px;
}

.about-top-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 28px;

    margin-bottom: 70px;
}

.about-description,
.about-focus-panel {

    background: var(--panel);

    border: 1px solid var(--border);

    padding: 36px;
}

.about-description p {

    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 24px;
}

.about-description p:last-child {

    margin-bottom: 0;
}

.focus-label {

    color: var(--accent);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 28px;
}

.focus-grid {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.focus-item {

    color: var(--muted);

    padding-bottom: 16px;

    border-bottom: 1px solid var(--border);
}

.focus-item:last-child {

    border-bottom: none;

    padding-bottom: 0;
}

/* ================================================= */
/* TEAM */
/* ================================================= */

.team-image {

    width: 100%;

    height: 460px;

    object-fit: cover;

    border-bottom: 1px solid var(--border);
}

.team-content {

    padding: 30px;
}

.team-role {

    color: var(--accent);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.team-name {

    font-size: 32px;

    margin-bottom: 18px;
}

.team-text {

    color: var(--muted);

    line-height: 1.9;
}

/* ================================================= */
/* CONTACT */
/* ================================================= */

.contact-section {

    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-panel {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    background: var(--panel);

    border: 1px solid var(--border);

    padding: 60px;
}

.contact-title {

    font-size: 54px;

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 24px;
}

.contact-text {

    color: var(--muted);

    line-height: 1.9;
}

.contact-grid {

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.contact-item {

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border);
}

.contact-label {

    color: var(--accent);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.contact-value {

    font-size: 22px;
}

/* ================================================= */
/* FOOTER */
/* ================================================= */

.footer {

    border-top: 1px solid var(--border);

    padding: 40px 0;

    background: var(--bg);
}

.footer-inner {

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.footer-text {

    color: #787873;

    font-size: 13px;
}

.footer-links {

    display: flex;

    gap: 24px;

    color: #787873;

    font-size: 13px;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 1080px) {

    .card-grid,
    .product-grid,
    .info-grid,
    .team-grid,
    .about-top-grid,
    .contact-panel {

        grid-template-columns: 1fr;
    }

    .hero-title {

        font-size: 56px;
    }

    .section-title,
    .contact-title {

        font-size: 42px;
    }

    .about-title {

        font-size: 52px;
    }
}

@media (max-width: 760px) {

    .container {

        padding: 0 24px;
    }

    .nav-links {

        display: none;
    }

    .hero-title {

        font-size: 42px;

        letter-spacing: -2px;
    }

    .hero-actions {

        flex-direction: column;
    }

    .section,
    .contact-section,
    .about-section {

        padding-top: 90px;
        padding-bottom: 90px;
    }

    .team-image {

        height: 360px;
    }

    .contact-panel {

        padding: 36px;
    }

    .footer-inner {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }
}