/* SME Tech, Blazor WebAssembly Stylesheet */
:root {
    --font-body: 'DM Sans',system-ui,sans-serif;
    --font-display: 'Space Grotesk','DM Sans',sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
    --transition: .25s cubic-bezier(.4,0,.2,1);
    --max-w: 1200px
}

.theme-light {
    --bg: #fafafa;
    --bg-alt: #fff;
    --bg-card: #fff;
    /*    --bg-hero: linear-gradient(135deg,#f0f4ff 0%,#e8f5e9 50%,#fff8e1 100%);
*/ --bg-hero: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2)), url(../Assets/SMETechHero.webp) no-repeat center center / cover;
    --bg-page-hero: #e2e8f0;
    --page-hero__titletext: #1E222F;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --card__title: #64748b;
    --text-light: #94a3b8;
    --accent: #204A5A;
    --accent-hover: #1d4ed8;
    --accent-light: rgba(37,99,235,.08);
    --accent-gradient: linear-gradient(135deg,#2563eb,#059669);
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #059669;
    --danger: #dc2626;
    --footer-bg: #0f172a;
    --footer-text: #cbd5e1
}


.theme-dark {
    --bg: #0b0f1a;
    --bg-alt: #111827;
    --bg-card: #1a2035;
    /*    --bg-hero: linear-gradient(135deg,#0b0f1a 0%,#0f2027 50%,#1a1a2e 100%);
*/ --bg-hero: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2)), url(../Assets/SMETechHero.webp) no-repeat center center / cover;
    --bg-page-hero: #1E222F;
    --page-hero__titletext: #e2e8f0;
    --text: white;
    --text-muted: #94a3b8;
    --card__title: #C3C5C8;
    --text-light: #64748b;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-light: rgba(59,130,246,.12);
    --accent-gradient: linear-gradient(135deg,#3b82f6,#10b981);
    --border: #1e293b;
    --border-light: #1e293b;
    --success: #10b981;
    --danger: #ef4444;
    --footer-bg: #070b14;
    --footer-text: #64748b
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition),color var(--transition)
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition)
}

    a:hover {
        color: var(--accent-hover)
    }

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem
}

.text-accent {
    color: var(--accent)
}



/* BUTTONS */
.btn {
    background-color: #f9f9f9;
    color: #1E222F;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-sm);
    /*border: 2px solid transparent;*/
    border: 0.5px solid #1E222F;
    cursor: pointer;
    transition: all var(--transition);
    font-size: .925rem;
    text-decoration: none;
    line-height: 1.4
}


.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

    .btn-primary:hover {
        background: var(--accent-hover);
        border-color: var(--accent-hover);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: var(--shadow-md)
    }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border)
}

    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent)
    }

.btn-sm {
    padding: .45rem 1rem;
    font-size: .85rem
}

.btn-lg {
    padding: .85rem 2rem;
    font-size: 1rem
}

.btn-full {
    width: 100%;
    justify-content: center
}

/* SECTIONS */
.section {
    padding: 5rem 0
}

.section__label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem
}

.section__label_sticky {
    text-align: justify;
    font-size: 2rem;
    padding: 40px 40px 40px 60px;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0rem;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url(../Assets/ModuleHeroC.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: black;
    position: sticky;
    color: #d2d2d5;
    width:100%;
    top: 0;
    z-index: 100;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    
    color:var(--text);
}

.section__desc {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7
}


.about-hr {
    align-self: start;
    border: none;
    height: 1px;
    background-color: #1E222F;
    width: 4%;
    margin-left: 0 auto;
    margin-top: 0.5rem;
}

.about-section {
    margin-bottom: 40px;
}

.about-section-container {
    margin: 0 auto;
    padding: 4px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}



.about-section-img-1 {
    width: 20vw;
    height: 60vh;
    object-fit: cover;
    margin: 10px;
    border-radius: 0px 0px 120px 120px;
}

.about-section-img-2 {
    width: 20vw;
    height: 60vh;
    object-fit: cover;
    margin: 10px;
    border-radius: 120px 120px 0px 0px;
}

.about-value-section-img-1 {
    width: 10vw;
    height: auto;
    object-fit: cover;
    margin: 10px;
    border-radius: 0px 25px 25px 0px;
}

.about-value-section-img-2 {
    width: 10vw;
    height: auto;
    object-fit: cover;
    margin: 10px;
    border-radius: 25px 0px 0px 25px;
}

@media (max-width: 768px) {

    .about-section-container {
        grid-template-columns: 1fr;
    }

    .about-summary {
        font-size: 1.2rem;
    }

    .about-section-img-1 {
        width: 35vw;
        height: 50vh;
    }

    .about-section-img-2 {
        width: 35vw;
        height: 50vh;
    }

    .about-value-section-img-1 {
        width: 25vw;
    }

    .about-value-section-img-2 {
        width: 25vw;
    }
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    transition: all var(--transition)
}

.navbar--scrolled {
    box-shadow: var(--shadow-sm)
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 2rem
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--text)
}

.navbar__logo-icon {
    width: 60px;
    height: 60px
}

.navbar__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: .25rem
}

.navbar__link {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem .85rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

    .navbar__link:hover, .navbar__link.active {
        color: var(--accent);
        background: var(--accent-light)
    }

.navbar__dropdown {
    position: relative
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    display: flex;
    flex-direction: column;
    z-index: 200;
    animation: dropIn .2s ease
}

    .navbar__dropdown-menu a {
        padding: .55rem .85rem;
        border-radius: var(--radius-sm);
        font-size: .85rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: all var(--transition)
    }

        .navbar__dropdown-menu a:hover {
            background: var(--accent-light);
            color: var(--accent)
        }

.navbar__actions {
    display: flex;
    align-items: center;
    gap: .75rem
}

.navbar__theme-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

    .navbar__theme-btn:hover {
        border-color: var(--accent);
        color: var(--accent)
    }

.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 6px 4px;
    background: none;
    border: none;
    cursor: pointer;
    justify-content: center
}

    .navbar__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all var(--transition)
    }

.navbar__burger--open span:nth-child(1) {
    transform: rotate(45deg) translate(4px,4px)
}

.navbar__burger--open span:nth-child(2) {
    opacity: 0
}

.navbar__burger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px,-4px)
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

/* HERO */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: var(--bg-hero);
    background-size: cover;
    overflow: hidden
}


.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle at 1px 1px,var(--text) 1px,transparent 0);
    background-size: 32px 32px
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero__badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem,5vw,3.5rem);
    font-palette:inherit;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    outline:none;
    
}


.hero__subtitle {
    color: #1E222F;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
}

.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent)
}

.hero__stat span {
    font-size: .8rem;
    color: var(--accent)
}

.hero__visual {
    display: flex;
    justify-content: center
}

.hero__mockup {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: mockupFloat 6s ease-in-out infinite
}

@keyframes mockupFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero__mockup-bar {
    display: flex;
    gap: 6px;
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border)
}

    .hero__mockup-bar span {
        width: 10px;
        height: 10px;
        border-radius: 50%
    }

        .hero__mockup-bar span:nth-child(1) {
            background: #ef4444
        }

        .hero__mockup-bar span:nth-child(2) {
            background: #f59e0b
        }

        .hero__mockup-bar span:nth-child(3) {
            background: #22c55e
        }

.hero__mockup-body {
    display: flex;
    padding: 1rem;
    gap: 1rem;
    min-height: 240px
}

.hero__mockup-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.hero__mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.line {
    height: 8px;
    border-radius: 4px;
    background: var(--border)
}

.w-40 {
    width: 40%
}

.w-50 {
    width: 50%
}

.w-60 {
    width: 60%
}

.w-70 {
    width: 70%
}

.w-80 {
    width: 80%
}

.hero__mockup-cards {
    display: flex;
    gap: .5rem
}

.mini-card {
    flex: 1;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--border-light);
    border: 1px solid var(--border)
}

    .mini-card.accent {
        background: var(--accent-light);
        border-color: var(--accent);
        opacity: .6
    }

.hero__mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex: 1;
    padding-top: .5rem
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--border);
    transition: height .5s ease
}

    .bar.accent {
        background: var(--accent);
        opacity: .7
    }

/* OVERVIEW */
.overview {
    text-align: center
}

.overview__highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-top: 2.5rem
}

.overview__highlight {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: left
}

    .overview__highlight:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md)
    }

.overview__highlight-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem
}

.overview__highlight h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.overview__highlight p {
    color: var(--text-muted);
    font-size: .9rem
}

/* PRODUCTS */
.products {
    text-align: center;
    background: var(--bg-alt)
}

.products__filter {
    max-width: 400px;
    margin: 0 auto 2.5rem
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.5rem;
    text-align: left
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--card-accent,var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease
    }

    .product-card:hover::before {
        transform: scaleX(1)
    }

    .product-card:hover {
        border-color: var(--card-accent,var(--accent));
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        color: var(--text)
    }

.product-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--card-accent,var(--accent))
}

    .product-card__icon svg {
        width: 100%;
        height: 100%
    }

.product-card__title {
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.product-card__subtitle {
    font-size: .85rem;
    color: var(--card-accent,var(--accent));
    font-weight: 600;
    margin-bottom: .5rem
}

.product-card__desc {
    color: var(--text-muted);
    font-size: .875rem;
    flex: 1;
    margin-bottom: 1rem
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    color: var(--card-accent,var(--accent))
}

    .product-card__cta svg {
        transition: transform var(--transition)
    }

.product-card:hover .product-card__cta svg {
    transform: translateX(4px)
}

/* CUSTOM FIT */
.custom-fit {
    background: var(--accent-gradient);
    color: #fff;
    text-align: center
}

.custom-fit__inner {
    max-width: 640px;
    margin: 0 auto
}

.custom-fit .section__label {
    color: rgba(255,255,255,.7)
}

.custom-fit .section__title {
    color: #fff
}

.custom-fit .section__desc {
    color: rgba(255,255,255,.85)
}

.custom-fit .btn-primary {
    background: #fff;
    color: var(--accent);
    border-color: #fff
}

    .custom-fit .btn-primary:hover {
        background: rgba(255,255,255,.9)
    }

/* CONTACT */
.contact-section {
    background-color: transparent;
}
.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.contact-section__text p {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.7
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start
}

.contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition)
}

    .contact-info-card:hover {
        border-color: var(--accent)
    }

.contact-info-card__icon {
    margin-bottom: .5rem
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: .875rem
}

/* FORMS */
.form-input {
    width: 100%;
    padding: .7rem 1rem;
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .9rem;
    transition: all var(--transition)
}

    .form-input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px var(--accent-light)
    }

    .form-input::placeholder {
        color: var(--text-light)
    }

.form-textarea {
    resize: vertical;
    min-height: 100px
}

.form-group {
    margin-bottom: 1.25rem
}

    .form-group label {
        display: block;
        font-family: var(--font-display);
        font-size: .8rem;
        font-weight: 600;
        margin-bottom: .4rem;
        color: var(--text-muted)
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-success {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    padding: .75rem 1rem;
    background: rgba(5,150,105,.1);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem
}

.validation-message {
    color: var(--danger);
    font-size: .78rem;
    margin-top: .25rem
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite
}

/* PAGE HERO */
/*.page-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: var(--bg-hero);
    position: relative
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem,5vw,3rem);
    font-weight: 700;
    line-height: 1.15
}

.page-hero__sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.65
}*/


.page {
    text-align: center;
    padding: 4rem 15%;
    border-radius: 0px 0px 24px 24px;
    color: white;
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-in-out;
}

.page-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: var(--bg-page-hero);
    position: relative
}

.page-hero__title {
    text-align: start;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 300;
    color: var(--page-hero__titletext);
}

.page-hero__sub {
    text-align: start;
    padding-top: 10px;
    padding-bottom: 0px;
    font-weight: 300;
    color: var(--page-hero__titletext);
}
.page-hero__hr {
    align-self: start;
    border: none;
    height: 1.5px;
    background-color: #5B687E;
    width: 5%;
    margin-left: 50px auto;
    margin-top: 0.5rem;
}


/* ABOUT */
.about-story__content {
    max-width: 720px;
    margin: 0 auto
}

    .about-story__content p {
        margin-bottom: 1rem;
        color: var(--text-muted);
        line-height: 1.75
    }

.about-story__lead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text) !important
}

.about-story__highlight {
    font-size: 1.15rem;
    color: var(--accent) !important;
    font-weight: 600;
    padding: 1rem 0
}

.about-mission {
    background: var(--bg-alt);
    text-align: center
}

.about-mission__statement {
    font-family: var(--font-display);
    font-size: clamp(1.4rem,3vw,2rem);
    font-weight: 600;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.4
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all var(--transition)
}

    .value-card:hover {
        border-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md)
    }

.value-card__icon {
    margin-bottom: .75rem
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.value-card p {
    color: var(--text-muted);
    font-size: .9rem
}

.about-cta {
    background: var(--accent-gradient);
    color: #fff;
    text-align: center
}

.about-cta__inner {
    max-width: 540px;
    margin: 0 auto
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-cta p {
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem
}

.about-cta .btn-primary {
    background: #fff;
    color: var(--accent);
    border-color: #fff
}

/* FAQ */
.faq-section {
    background: var(--bg-alt);
    text-align: center
}

.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: left
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: .75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition)
}

    .faq-item:hover, .faq-item--open {
        border-color: var(--accent)
    }

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    gap: 1rem
}

    .faq-item__header h3 {
        font-family: var(--font-display);
        font-size: .95rem;
        font-weight: 600
    }

.faq-item__chevron {
    transition: transform var(--transition);
    flex-shrink: 0
}

.faq-item--open .faq-item__chevron {
    transform: rotate(180deg)
}

.faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.65;
    animation: fadeIn .25s ease
}

/* MODULE DETAIL */
.coming-soon-badge {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 100px;
    font-size: .9rem
}

.module-ps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.module-ps__card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

    .module-ps__card h2 {
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 700;
        margin: .75rem 0
    }

    .module-ps__card p {
        color: var(--text-muted);
        font-size: .95rem;
        line-height: 1.65
    }

.module-ps__card--problem {
    background: rgba(220,38,38,.04);
    border-color: rgba(220,38,38,.15)
}

.module-ps__card--solution {
    background: var(--accent-light);
    border-color: rgba(37,99,235,.15)
}

.module-features {
    background: var(--bg-alt)
}

.module-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.5rem
}

.micro-delight {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    background-color: #1E222F;
    padding: 5%;
    color:white;
}

    .micro-delight p {
        text-align: center;
        font-size: 1.5rem;
    }



.feature-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem
}

.feature-block__title {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 1rem;
    color: var(--accent)
}


.feature-block__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

    .feature-block__list li {
        display: flex;
        align-items: flex-start;
        gap: .5rem;
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.5
    }

    .feature-block__list svg {
        flex-shrink: 0;
        margin-top: 2px
    }

/*.module-steps {
    background: #0f172a;
    width: 100%;
    padding: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.8s ease-in-out forwards;
}*/

.steps-timeline {
    max-width: 640px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    position: relative
       
}

    .steps-timeline::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border)
    }

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    position: relative;
    z-index: 1
}

.step-item__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg)
}

.step-item__content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.step-item__content p {
    color: var(--text-muted);
    font-size: .9rem
}

.module-why {
    background: var(--bg-alt);
    text-align: center
}

.module-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 1rem;
    margin-top: 2rem;
    text-align: left
}

.why-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: .9rem;
    font-weight: 500
}

.module-nav-section {
    background-color: #1E222F;
}

.module-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0
}

.module-nav-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem
}

/* FOOTER */
/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1E222F;
    color: white;
}


.site-footer {
    position: relative;
    margin-top: 0;
    color: #f5f5f5;
    background-image: url(../Assets/SMETFooter.png); /* your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .site-footer .footer-overlay {
        /*background: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) );
        padding: 3rem 8vw 2rem;*/

        padding: 1rem 6vw 1rem;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
    padding-top: 7%;
}

.footer-herotext {
    margin-top: 5rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: left;
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .footer-column ul li {
        margin-bottom: 0.4rem;
    }

.footer-column a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

    .footer-column a:hover {
        color: #ffffff;
        opacity: 0.85;
    }

.footer-column form {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.footer-column input[type="email"] {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
}

.footer-column button {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: #00bcd4;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .footer-column button:hover {
        background: #00a0b6;
        transform: translateY(-1px);
    }

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-bottom-links a {
    margin-left: 1rem;
    color: #f5f5f5;
    text-decoration: none;
}

    .footer-bottom-links a:hover {
        text-decoration: underline;
    }

/* Responsive tweaks */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 1rem;
    }
}
/*.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer__tagline {
    font-size: .9rem;
    margin-top: .5rem;
    line-height: 1.6
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 1rem
}

.footer__col a {
    display: block;
    color: var(--footer-text);
    font-size: .875rem;
    padding: .2rem 0;
    transition: color var(--transition)
}

    .footer__col a:hover {
        color: #fff
    }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .8rem
}

.footer__legal {
    display: flex;
    gap: 1.5rem
}

    .footer__legal a {
        color: var(--footer-text)
    }

        .footer__legal a:hover {
            color: #fff
        }*/

/* 404 */
.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center
}

    .not-found h1 {
        font-family: var(--font-display);
        font-size: 6rem;
        font-weight: 700;
        color: var(--accent);
        line-height: 1
    }

    .not-found p {
        color: var(--text-muted);
        margin: 1rem 0 2rem;
        font-size: 1.1rem
    }

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto
    }

    .hero__actions {
        justify-content: center
    }

    .hero__stats {
        justify-content: center
    }

    .hero__visual {
        display: none
    }

    .overview__highlights {
        grid-template-columns: 1fr
    }

    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .contact-page__grid {
        grid-template-columns: 1fr
    }

    .module-ps__grid {
        grid-template-columns: 1fr
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer__bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }
}

@media(max-width:640px) {
    .navbar__nav {
        display: none
    }

    .navbar__nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 100
    }

    .navbar__cta {
        display: none
    }

    .navbar__burger {
        display: flex
    }

    .navbar__dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem
    }

    .products__grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem
    }

    .module-nav__inner {
        flex-direction: column;
        gap: 1rem
    }
}
