/* =============================================
   Terramar Software — Landing Page Styles
   ============================================= */

/* --- Hero --- */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero .tagline {
    font-size: 1.2rem;
    color: #5a5e66;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #23272e;
    color: #fff;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;
}

.hero-cta:hover {
    background: #35393f;
    color: #fff;
    transform: translateY(-1px);
}

.hero-cta .arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.hero-cta:hover .arrow {
    transform: translateX(2px);
}

/* --- Values --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(36, 39, 46, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.value-card:hover {
    box-shadow: 0 4px 20px rgba(36, 39, 46, 0.06);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    display: block;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.value-card p {
    font-size: 0.93rem;
    color: #6b7080;
    line-height: 1.6;
}

/* --- Featured Product --- */
.featured-product {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(36, 39, 46, 0.06);
    border-radius: 1.25rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.featured-product-info .product-type {
    font-size: 0.85rem;
    color: #c47f08;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    display: block;
}

.featured-product-info p {
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.featured-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #c47f08;
}

.featured-product-link:hover {
    color: #a06a06;
}

.featured-product-link .arrow {
    transition: transform 0.2s ease;
}

.featured-product-link:hover .arrow {
    transform: translateX(3px);
}

.featured-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b2d4e8;
    border-radius: 0.75rem;
    min-height: 220px;
    color: #7a7e87;
    font-size: 0.9rem;
}

/* --- Contact CTA --- */
.contact-cta {
    text-align: center;
    padding: 4rem 0;
}

.contact-cta h2 {
    margin-bottom: 0.75rem;
}

.contact-cta p {
    color: #6b7080;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-email-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-email-row a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c47f08;
}

.copy-btn {
    background: none;
    border: 1px solid rgba(36, 39, 46, 0.1);
    border-radius: 0.4rem;
    cursor: pointer;
    padding: 0.35rem;
    color: #7a7e87;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: #23272e;
    border-color: rgba(36, 39, 46, 0.2);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .divider {
        margin: 2rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .featured-product {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .featured-product-visual {
        order: -1;
        min-height: 160px;
    }
}
