/* General Reset */
body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.hero-signage {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 100px 0;
    font-family: 'Inter', system-ui, sans-serif;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #1a4fd8;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    max-width: 520px;
}

/* Buttons */
.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2c5fff;
    transform: translateY(-2px);
}

.btn-secondary {
    color: #101722;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    color: #2c5fff;
}

.btn-secondary::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
    transform: translateX(4px);
}

/* Right Visual */
/* ===== TV Look Upgrade ===== */
.image-card {
    position: relative;
}

/* Screen */
.image-card img {
    width: 100%;
    display: block;
}



/* Optional: subtle TV feet shadow */
.hero-visual {
    padding-bottom: 30px;
    max-width: 600px;
    position: relative;
}


.firestick {
	position: absolute;
	right: 0;
	bottom: -20px;
	width: 240px;
}

/* .firestick::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    right: 0;
    bottom: 40px;
    z-index: 1;
} */

.firestick img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

/* ---------------------------------------------- */
.signage-info {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.signage-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Image Section */
.signage-image {
    display: flex;
    justify-content: center;
}

.image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.image-wrap img {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* Overlay text */
.image-title {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}

/* Content */
.signage-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 24px;
}

.signage-content p {
    font-size: 16.5px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 18px;
    max-width: 520px;
}

/* Responsive */
@media (max-width: 992px) {
    .signage-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .signage-content h2 {
        font-size: 34px;
    }

    .signage-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------------------------------------------- */
.why-signage {
    padding: 0px 0 100px;
    background: linear-gradient(180deg, #ffffff, #e8e8e8);
    font-family: "Poppins", sans-serif;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left */
.why-badge {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 14px;
}

.why-left h2 {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
}

/* Right */
.why-right {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 20px;
    position: relative;
}

/* Accent bar */
.why-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 5px;
    background: linear-gradient(180deg, #1b5ff1, #0939a0);
    border-radius: 5px;
}

.why-right p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #475569;
}

.why-right p+p {
    margin-top: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 34px;
        text-align: center;
    }

    .why-left {
        text-align: center;
    }
}

/* ---------------------------------------------- */
.partnership {
    padding: 120px 0;
    background: #f8fafc;
    font-family: "Poppins", sans-serif;
}

.partnership-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* Header */
.partnership-header {
    max-width: 820px;
    margin-bottom: 80px;
}

.partnership-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    margin-top: 0;
}

.partnership-header p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #475569;
}

/* Steps */
.partnership-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Card */
.step-card {
	background: #ffffff;
	display: grid;
	grid-template-columns: 270px 1fr;
	gap: 36px;
	padding: 36px;
	border-radius: 22px;
	box-shadow: 0 5px 10px rgba(15, 23, 42, 0.08);
	align-items: center;
}

/* Left visual */
.step-left {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* DsMenu logo block */
.step-left.logo {
    border-radius: 16px;
    display: block;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

/* Right content */
.step-right {
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -43px;
    font-size: 154px;
    font-weight: 300;
    color: #e5e7eb;
    line-height: 1;
}

.step-right h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-right p {
    font-size: 15.8px;
    line-height: 1.75;
    color: #475569;
    max-width: 720px;
}

/* Responsive */
@media (max-width: 992px) {
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.use-cases {
    padding: 0px 0 100px;
    font-family: "Poppins", sans-serif;
    margin-top: -50px;
}

.use-cases-container {
    max-width: 1000px;
    margin: auto;
    padding: 0 24px;
    position: relative;
    text-align: center;
    background: #ffffff;
    padding: 36px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    max-width: 760px;
}

/* Accent background shape */
.use-cases-container::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #facc15, transparent 70%);
    opacity: 0.25;
    z-index: 0;

}

/* Heading */
.use-cases h2 {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Paragraph card */
.use-cases p {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.9;
    color: #475569;

}

/* Responsive */
@media (max-width: 768px) {
    .use-cases h2 {
        font-size: 34px;
    }

    .use-cases p {
        padding: 28px;
    }
}
@media (max-width: 420px) {
    .firestick {
        width: 150px;
    }
    .firestick::after {
        display: none;
    }
}