/* Landing page styles extracted from landing.blade.php */
/* Screen-reader only helper */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

:root {
    --primary: #e67e22;
    --primary-dark: #c56a1c;
    --secondary: #389b13;
    --text-dark: #1f2933;
    --text-muted: #52606d;
    --surface: #ffffff;
    --surface-alt: #f5f7fa;
    --border: #e4e7eb;
    --shadow: 0 20px 40px rgba(14, 30, 37, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, rgba(230, 126, 34, 0.08) 0%, #ffffff 55%, rgba(56, 155, 19, 0.08) 100%);
    line-height: 1.6;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(228, 231, 235, 0.7);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.brand img{
    display: block;
    max-height: 44px;
    width: auto;
}

.brand .brand-text{
    display: inline-block;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, #ffe0c2, #f7a555 65%, #de6f0b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    box-shadow: var(--shadow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 14px 30px rgba(230, 126, 34, 0.25);
}

.cta:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 18px 35px rgba(230, 126, 34, 0.28);
}

.hero {
    padding: 5rem 1.5rem 4rem;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 3.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-copy p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(56, 155, 19, 0.12);
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-visual {
    background: var(--surface);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(230, 126, 34, 0.12), rgba(56, 155, 19, 0.08));
    pointer-events: none;
}

.visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.status-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.visual-card {
    background: var(--surface-alt);
    border-radius: 20px;
    padding: 1.25rem;
    display: grid;
    gap: 0.9rem;
}

.visual-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(230, 126, 34, 0.12);
}

.visual-item strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.visual-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

section {
    padding: 4.5rem 1.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0.75rem auto 3rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.feature {
    background: var(--surface);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(228, 231, 235, 0.7);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(230, 126, 34, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.feature h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.feature p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.process {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.09), rgba(56, 155, 19, 0.08));
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    border: 1px solid rgba(230, 126, 34, 0.18);
}

.process-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(230, 126, 34, 0.4);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.process-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    background: radial-gradient(110% 140% at 50% 0%, rgba(230, 126, 34, 0.14) 0%, rgba(230, 126, 34, 0.05) 35%, rgba(56, 155, 19, 0.12) 100%);
    border-radius: 36px;
    padding: 4rem 2rem;
    box-shadow: var(--shadow);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0.5rem auto 2rem;
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(228, 231, 235, 0.7);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.contact-card h3 {
    margin-top: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

footer {
    margin-top: auto;
    padding: 2rem 1.5rem 3rem;
    background: #111827;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
}

/* Small discrete footer logo (Myrotech) */
.footer-sm-logo{
    height:16px;
    width:auto;
    opacity:0.75;
    filter:grayscale(100%);
    margin-left:0.75rem;
    vertical-align:middle;
    display:inline-block;
}

@media (max-width:640px){
    .footer-sm-logo{height:14px;margin-top:6px;margin-left:0}
}

@media (max-width: 960px) {
    header {
        position: static;
        backdrop-filter: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }

    .cta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
