/* ============================================
   TAPNATIVE — Pixel-Perfect Stylesheet
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #319AD5;
    --primary-hover: #2780b3;
    --secondary: #F7932E;
    --secondary-hover: #e07d1a;

    --primary-dark: #0a1628;
    --primary-navy: #0d1b2e;
    --primary-navy-2: #101f36;
    --primary-blue: #14253d;

    --text-white: #ffffff;
    --text-light: #b8c7d9;
    --text-gray: #7e90a6;
    --text-dark: #0F1A24;
    --text-body: #4a5568;

    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-section: #f0f3f7;

    --gradient-hero: linear-gradient(165deg, #050b18 0%, #091425 30%, #0d1e35 55%, #122a48 100%);
    --gradient-secondary: linear-gradient(135deg, #F7932E 0%, #ffb347 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --font: 'DM Sans', sans-serif;
    --transition: 0.3s ease;
    --section-py: 100px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--bg-white);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== UTILITIES ========== */
.section-padding {
    padding: var(--section-py) 0;
}

.text-gradient {
    color: #319AD5;
}

.text-secondary-color {
    color: #F7932E;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-title-dark {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title-light {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    /* max-width: 580px; */
    margin: 0 auto;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.2px;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 154, 213, 0.3);
}


.btn-secondary-custom {
    background: var(--secondary);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.2px;
}

.btn-secondary-custom:hover {
    background: var(--secondary-hover);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 154, 213, 0.3);
}

.btn-outline-custom {
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 11px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.55);
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1050;
    background: #121D2A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.96) !important;
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    padding: 0;
}

.navbar-logo {
    height: 28px;
    width: auto;
}

.footer-logo {
    height: 24px;
    width: auto;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.btn-nav-login {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

.btn-nav-login:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav-contact {
    background: var(--secondary);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: none;
}

.btn-nav-contact:hover {
    background: var(--secondary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

.btn-nav-getstarted {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: none;
}

.btn-nav-getstarted:hover {
    background: var(--primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero-section {
    background: #0b1726;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, #1a8fff 40%, #1a8fff 60%, transparent 90%);
    opacity: 0.5;
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(22, 78, 140, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(12, 50, 100, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(8, 30, 65, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 140px;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image-col {
    position: relative;
    z-index: 1;
}

.hero-title {
font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 52px;
    margin-bottom: 18px;
}

.hero-highlight {
    color: #319AD5;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0;
    margin-top: 65px;
    padding-top: 0;
}

.stat-item {
    text-align: left;
    padding: 0px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.stat-icon-pill {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.stat-number {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(140, 160, 185, 0.65);
    margin-bottom: 0;
    padding-left: 0;
}

/* ========== HERO BROWSER MOCKUP ========== */
.hero-image-wrapper {
    position: relative;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover {
    transform: scale(1.03);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========== PLATFORM SECTION ========== */
.platform-section {
    background: var(--bg-white);
}

.platform-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dde3ec 20%, #dde3ec 80%, transparent);
    margin-bottom: 40px;
}

/* Features Row — horizontal inline */
.features-row {
     display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 1042px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    background: var(--bg-white);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.feature-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(247, 147, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1px;
    color: var(--text-dark);
    white-space: nowrap;
}

.feature-text p {
    font-size: 0.7rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* Video */
.video-section {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 855px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background: var(--gradient-hero);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(247, 147, 46, 0.12) 0%, transparent 65%);
}

.play-btn {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    animation: pulse-ring 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.play-btn i {
    margin-left: 4px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 147, 46, 0.5);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(247, 147, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 147, 46, 0);
    }
}

.video-label {
    color: var(--text-light);
    margin-top: 14px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ========== HCP SECTION ========== */
.hcp-section {
    background: linear-gradient(
        180deg,
        #e9edf2 0%,
        #f3f5f7 40%,
        #f7f6f4 70%,
        #f5efe9 100%
    );
}

.section-img-box {
    position: relative;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.section-image:hover {
    transform: translateY(-6px) scale(1.01);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); */
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.feature-list li i {
    color: #22c55e;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-list.check-green li i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* ========== CONSUMER SECTION ========== */
.consumer-section {
    background: linear-gradient(
        180deg,
        #e9edf2 0%,
        #f3f5f7 40%,
        #f7f6f4 70%,
        #f5efe9 100%
    );
}

.hcp-section .consumer-container {
    margin-top: 100px;
}

/* ========== PUBLISHERS SECTION ========== */
.publishers-section {
    background: var(--gradient-hero);
}

.publishers-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 145px;
}

.publishers-content {
    position: relative;
    z-index: 1;
}

.publishers-logos-col {
    position: relative;
    z-index: 1;
}

.publishers-logos-box {
    background:rgba(14, 49, 78, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.publishers-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.publishers-image:hover {
    transform: scale(1.02);
}

/* ========== TRUSTED SECTION ========== */
.trusted-section {
    background: var(--bg-white);
}

.trusted-logos-box {
    text-align: center;
}

.trusted-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trusted-image:hover {
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0 100px;
    background: var(--bg-white);
}

.cta-box {
    /* background: var(--gradient-hero); */
    border-radius: var(--radius-xl);
    padding: 65px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
        background: radial-gradient(circle at center, #0b2a42 0%, #061623 70%), radial-gradient(circle at top left, rgba(11, 42, 66, 0.5) 0%, transparent 55%), radial-gradient(circle at right center, rgba(255, 140, 60, 0.15) 0%, transparent 40%), linear-gradient(to bottom, #061623, #061623);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(247, 147, 46, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(26, 143, 255, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    background: rgba(247, 147, 46, 0.12);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.cta-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.btn-cta-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ========== FOOTER ========== */
.footer-section {
    background: #0c1829;
    padding: 70px 0 0;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 280px 150px 225px 240px;
    justify-content: space-between;
}

.footer-brand a {
    font-size: 1.4rem;
    font-weight: 800;
    display: inline-block;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
        width: 35px;
    height: 35px;
    border-radius:7px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-align: center;
}

.social-icon img {
     width: 13px;
    height: 16px;
    object-fit: contain;
        margin-top: -5px;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: var(--secondary-hover);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #319AD5;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-style: italic;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 3px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 13px;

    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-contact a {
    color: var(--text-gray);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 50px;
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.78rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-gray);
    font-size: 0.78rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-hover);
    color: #fff;
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* XL */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .cta-title {
        font-size: 2rem;
    }

    .section-title-dark {
        font-size: 1.9rem;
    }

    .section-title-light {
        font-size: 1.8rem;
    }
}

/* LG */
@media (max-width: 991.98px) {
    :root {
        --section-py: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 120px 0 90px;
    }

    .hero-image-col {
        display: none;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-title-dark {
        font-size: 1.75rem;
    }

    .section-title-light {
        font-size: 1.7rem;
    }

    .cta-title {
        font-size: 1.85rem;
    }

    .nav-buttons {
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .publishers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .publishers-logos-box {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* MD */
@media (max-width: 767.98px) {
    :root {
        --section-py: 60px;
    }

    .features-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .feature-item {
        width: calc(50% - 6px);
        padding: 12px 14px;
    }

    .feature-text h5,
    .feature-text p {
        white-space: normal;
    }

    .hero-grid {
        padding: 100px 0 70px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title-dark,
    .section-title-light {
        font-size: 1.55rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .hero-stats {
        gap: 0;
    }

    .stat-item {
        padding: 12px 16px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-icon-pill {
        width: 32px;
        height: 32px;
    }

    .stat-icon-img {
        width: 15px;
        height: 15px;
    }

    .video-placeholder {
        height: 260px;
    }

    .publishers-logos-box {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .img-placeholder,
    .section-image {
        max-height: 280px;
        object-fit: cover;
    }
}

/* SM */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.55rem;
    }

    .hero-grid {
        padding: 95px 0 55px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-title-dark,
    .section-title-light {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .cta-box {
        padding: 30px 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 14px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .publishers-logos-box {
        margin-top: 0;
    }

    .play-btn {
        width: 58px;
        height: 58px;
        font-size: 1.2rem;
    }

    .video-placeholder {
        height: 200px;
    }

    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 38px;
        height: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

span.errormsg {
    color: #ff3c3c;
    font-size: 13px;
    margin-left: 16px;
    margin-top: 0px;
    display: none;
}