:root {
    --navy: #06295f;
    --navy-2: #031a3c;
    --teal: #079c94;
    --teal-2: #0cc8b6;
    --ink: #162235;
    --muted: #667085;
    --light: #f5f8fb;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 22px 60px rgba(6, 41, 95, .14);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Mada', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    margin: 0;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1180px
}

.btn-telc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(7, 156, 148, .25);
    border: 0
}

.btn-outline-telc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    color: var(--navy);
    font-weight: 800;
    border: 1px solid rgba(6, 41, 95, .18);
    background: #fff
}

.top-strip {
    background: var(--navy-2);
    color: #fff;
    font-size: 14px;
    padding: 8px 0
}

.top-strip a {
    color: #fff;
    font-weight: 700
}

.telc-navbar {
	background: #fff;
	box-shadow: 0 10px 35px rgba(6, 41, 95, .08);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 999;
}

.telc-navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	margin-right: 0;
}

.navbar-brand img {
	height: 70px;
	width: auto;
	display: block;
}

.navbar-collapse {
	flex-grow: 0;
}

.nav-link {
	font-weight: 800;
	color: var(--navy) !important;
	margin: 0 8px;
}

.nav-cta {
	padding: 10px 18px !important;
	border-radius: 999px;
	background: var(--navy);
	color: #fff !important;
}

.navbar-toggler {
	border: 1px solid rgba(6, 41, 95, .2);
	padding: 8px 10px;
	margin-right: 10px;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

@media (max-width: 991px) {
	.navbar-collapse {
		width: 100%;
		flex-grow: 1;
		margin-top: 16px;
		background: #fff;
		border-radius: 18px;
		padding: 16px;
		box-shadow: 0 18px 35px rgba(6, 41, 95, .1);
	}

	.navbar-nav {
		align-items: flex-start !important;
	}

	.nav-link {
		margin: 4px 0;
		padding: 10px 0;
	}

	.nav-cta {
		margin-top: 8px;
		padding: 12px 18px !important;
		text-align: center;
		width: 100%;
	}
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(7, 156, 148, .14), transparent 38%), linear-gradient(135deg, #fff 0%, #f4f8fb 46%, #e8f3f6 100%);
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -240px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    opacity: .09
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 18px
}

.eyebrow:before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--teal);
    border-radius: 999px
}

.telc-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 150, 145, .18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f3f8fb 48%, #eaf3f6 100%);
}


.telc-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 150, 145, .12);
    color: #008c89;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    margin-bottom: 22px;
}

.telc-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    font-weight: 900;
    color: #06295f;
    margin-bottom: 22px;
    max-width: 680px;
}

.telc-hero p {
    font-size: 19px;
    line-height: 1.7;
    color: #42526b;
    max-width: 570px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.hero-btn-primary {
    background: #06295f;
    color: #fff;
    box-shadow: 0 16px 35px rgba(6, 41, 95, .22);
}

.hero-btn-outline {
    color: #06295f;
    border: 2px solid rgba(6, 41, 95, .16);
    background: #fff;
}

.hero-btn-primary:hover,
.hero-btn-outline:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-btn-primary:hover {
    color: #fff;
}
.telc-hero-image {
    position: relative;
    z-index: 2;
    border-radius: 36px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 26px 70px rgba(6, 41, 95, .16);
    backdrop-filter: blur(12px);
}

.telc-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    display: block;
}

@media (max-width: 991px) {
    .telc-hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .telc-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        margin: 0 auto 30px;
    }

    .telc-hero-image img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .telc-hero {
        padding: 105px 0 45px;
    }

    .telc-hero h1 {
        font-size: 38px;
    }

    .telc-hero p {
        font-size: 16px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
    }

    .telc-hero-image {
        padding: 12px;
        margin-bottom: 30px;
        border-radius: 24px;
    }

    .telc-hero-image img {
        height: 300px;
        border-radius: 18px;
    }
}

.floating-badge {
    position: absolute;
    right: 22px;
    top: 22px;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    font-size: 14px
}

.stats {
    margin-top: -54px;
    position: relative;
    z-index: 2
}

.stats-box {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(6, 41, 95, .08)
}

.stat {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-right: 1px solid rgba(6, 41, 95, .08)
}

.stat:last-child {
    border-right: 0
}

.stat i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #e8f7f6;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.stat strong {
    display: block;
    color: var(--navy);
    font-size: 18px
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 14px
}

section {
    padding: 40px 0
}

.section-head {
    margin-bottom: 36px
}

.section-head h2 {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.03em
}

.section-head p {
    font-size: 18px;
    color: var(--muted);
    max-width: 680px
}

.about-panel {
    background: linear-gradient(135deg, var(--navy), #0a3b84);
    border-radius: 34px;
    color: #fff;
    padding: 44px;
    position: relative;
    overflow: hidden
}


.about-panel h2 {
    font-weight: 900;
    font-size: 44px
}

.about-panel p {
    font-size: 18px;
    color: #dfe9f6;
    max-width: 720px
}

.about-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px
}

.about-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 18px;
    border-radius: 20px
}

.about-item strong {
    display: block;
    font-size: 18px
}

.about-item span {
    color: #dbe9ee
}

.catalog {
    background: #f5f8fb
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.filter-chip {
    border: 0;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    border-radius: 999px;
    padding: 11px 18px;
    box-shadow: 0 8px 20px rgba(6, 41, 95, .08)
}

.filter-chip.active {
    background: var(--navy);
    color: #fff
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.product-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(6, 41, 95, .08);
    box-shadow: 0 16px 38px rgba(6, 41, 95, .08);
    overflow: hidden;
    transition: .25s
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.product-media {
    height: 250px;
    background: linear-gradient(135deg, #fff, #eef5f7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tag {
    position: absolute;
    left: 18px;
    top: 18px;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px
}

.product-body {
    padding: 22px
}

.product-body h3 {
    color: var(--navy);
    font-weight: 900;
    font-size: 25px;
    margin: 0 0 8px
}

.product-body p {
    color: var(--muted);
    min-height: 48px
}

.specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px 0
}

.specs span {
    background: #edf7f7;
    color: #086b68;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
    font-size: 13px
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px
}

.product-actions a {
    font-weight: 900;
    color: var(--teal)
}

.featured {
    background: #fff
}

.featured-card {
    background: linear-gradient(135deg, #06295f, #031a3c);
    border-radius: 34px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow)
}

.featured-content {
    padding: 52px
}

.featured-content h2 {
    font-weight: 900;
    font-size: 46px
}

.featured-content p {
    color: #d8e7f2;
    font-size: 18px
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0
}

.feature-pill {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    padding: 14px;
    font-weight: 800
}

.featured-img {
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 26px;
}

.featured-img img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .25))
}

.process {
    background: #f5f8fb
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.process-step {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(6, 41, 95, .08);
    box-shadow: 0 16px 38px rgba(6, 41, 95, .07)
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 16px
}

.process-step h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy)
}

.process-step p {
    color: var(--muted)
}

.cta {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta h2 {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900
}

.cta p {
    font-size: 19px;
    color: #e7ffff
}

.contact-card {
    background: #fff;
    color: var(--ink);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);    
    margin-top: 20px;

}

.contact-card input,
.contact-card textarea {
    border: 1px solid #dce5ef;
    border-radius: 14px;
    padding: 14px;
    width: 100%;
    margin-bottom: 12px
}

.footer {
    background: #031a3c;
    color: #fff;
    padding: 28px 0
}

.footer a {
    color: #fff
}

.social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px
}

@media (max-width:991px) {
    .hero {
        padding: 80px 0
    }

    .stats-box{
        grid-template-columns: 1fr 1fr
    }
    .product-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .about-list {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0
    }

    .featured-content {
        padding: 34px
    }

    .nav-cta {
        display: inline-block;
        margin-top: 8px
    }
}

@media (max-width:575px) {
    .hero {
        min-height: auto;
        padding: 70px 0
    }

    .hero-products {
        grid-template-columns: 1fr
    }

    .hero-product.big {
        grid-column: span 1
    }

    .product-grid,
    .process-grid {
        grid-template-columns: 1fr
    }
    .about-panel {
        padding: 28px
    }

    .product-media {
        height: 210px
    }

    .navbar-brand img {
        height: 45px
    }

    .top-strip {
        text-align: center
    }

    .hero h1 {
        font-size: 42px
    }
}