/* ==========================================================================
   Ping Shield — Landing Page
   Brand tokens taken from pingnetwork.in
   ========================================================================== */

/* ---- Self-hosted Poppins font ---- */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ---- Reset Twenty Twenty / theme interference ---- */
html {
    font-size: 16px !important;
}

html body.ping-shield-lp {
    background: #ffffff !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
}

body.ping-shield-lp #page,
body.ping-shield-lp .site,
body.ping-shield-lp .site-main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
}

body.ping-shield-lp .site-header *,
body.ping-shield-lp .navbar * {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: nowrap;
}

body.ping-shield-lp .navbar-nav {
    flex-wrap: nowrap !important;
}

body.ping-shield-lp .navbar-collapse p,
body.ping-shield-lp .site-header p {
    white-space: normal;
}

:root {
    --color-accent: #e8222e;
    --color-accent-hover: #c81a25;
    --color-accent-soft: #fde6e8;
    --color-primary: #000000;
    --color-secondary: #6b6b6b;
    --color-muted: #9a9a9a;
    --color-border: #e6e6e6;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f8;
    --color-bg-dark: #0d0d0f;

    --radius-pill: 9999px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.10);

    --font-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --container-max: 1200px;
}

/* ----------------------------------------- BASE ---- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-primary);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.elementor-kit-6 h1 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; color: var(--color-secondary); }

a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container-max); }

/* ----------------------------------------- HELPERS ---- */
.accent-text { color: var(--color-accent); }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.9rem;
}

.section-head { margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: 0.6rem; }
.section-sub {
    color: var(--color-secondary);
    max-width: 620px;
    margin: 0 auto;
}
.section-head.text-center .section-sub { margin-left: auto; margin-right: auto; }

.link-accent { color: var(--color-accent); font-weight: 600; }
.link-accent:hover { text-decoration: underline; }

/* ----------------------------------------- BUTTONS ---- */
.btn-primary-pill,
.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: all .2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-pill {
    background-color: var(--color-accent);
    color: #ffffff;
}
.btn-primary-pill:hover,
.btn-primary-pill:focus {
    background-color: var(--color-accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232, 34, 46, 0.25);
}

.btn-outline-pill {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline-pill:hover,
.btn-outline-pill:focus {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-lg-pill { padding: 1.05rem 2rem; font-size: 1.02rem; }

.btn-text-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-text-link:hover { color: var(--color-accent-hover); }
.btn-text-link i { transition: transform .2s ease; }
.btn-text-link:hover i { transform: translateX(3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.06); }

.site-header .navbar { padding: 0.9rem 0; }

.brand-logo {
    height: 52px;
    width: auto;
}

.site-header .nav-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
    position: relative;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--color-accent);
}
.site-header .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.header-actions { white-space: nowrap; }
.header-actions .btn-primary-pill {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
}

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 6px;
    padding: 0.45rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}
.lang-btn:hover { border-color: var(--color-primary); }
.lang-btn .flag { font-size: 1.05rem; }
.lang-btn .bi { font-size: 0.75rem; color: var(--color-secondary); }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    min-width: 160px;
    z-index: 1030;
}
.lang-menu li {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.lang-menu li:hover { background: var(--color-bg-alt); color: var(--color-accent); }
.lang-menu[hidden] { display: none; }

/* Trust strip */
.trust-strip {
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 0.55rem 0;
    overflow: hidden;
}
.trust-strip .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    white-space: nowrap;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
}
.trust-item i { color: var(--color-accent); font-size: 1rem; }
.trust-divider {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .trust-strip { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
    padding: 5rem 0 5.5rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(232, 34, 46, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 5% 90%, rgba(232, 34, 46, 0.04) 0%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-headline {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-secondary);
    max-width: 540px;
    margin-bottom: 1.8rem;
}

.hero-cta { margin-bottom: 2rem; }

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 500;
}
.hero-bullets li i { color: var(--color-accent); font-size: 1.05rem; }

/* Hero visual */
.hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-badge {
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.shield-badge::before {
    content: "";
    position: absolute;
    inset: 10px;
    background: radial-gradient(circle, rgba(232, 34, 46, 0.18) 0%, rgba(232, 34, 46, 0) 65%);
    border-radius: 50%;
    z-index: 0;
}
.shield-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(232, 34, 46, 0.35);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
    z-index: 0;
}
.shield-badge img {
    width: 88%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 18px 35px rgba(232, 34, 46, 0.25));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.float-card {
    position: absolute;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    border: 1px solid var(--color-border);
    animation: float 6s ease-in-out infinite;
}
.float-card i {
    font-size: 1.4rem;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}
.float-card span {
    font-size: 0.78rem;
    color: var(--color-secondary);
}

.float-card-1 { top: 30px; left: 0; animation-delay: 0s; }
.float-card-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.float-card-3 { bottom: 30px; left: 30px; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.float-card-2 { animation-name: float-y; }
@keyframes float-y {
    0%, 100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 8px)); }
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.intro-split { margin-bottom: 3rem; }

.intro-head { margin-bottom: 0; }
.intro-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 1.2rem;
}
.intro-accent-bar {
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.intro-shield {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.intro-shield::before {
    content: "";
    position: absolute;
    inset: 8%;
    background: radial-gradient(circle, rgba(232, 34, 46, 0.12) 0%, rgba(232, 34, 46, 0) 65%);
    border-radius: 50%;
    z-index: 0;
}
.intro-shield img {
    width: 78%;
    max-width: 340px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 14px 30px rgba(232, 34, 46, 0.18));
}

.intro-copy { max-width: 640px; }
.intro-copy p {
    font-size: 1rem;
    color: var(--color-secondary);
    line-height: 1.75;
    margin: 0 0 1.4rem;
    position: relative;
    padding-top: 1.4rem;
}
.intro-copy p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.5;
}
.intro-copy p:first-child { padding-top: 0; }
.intro-copy p:first-child::before { display: none; }
.intro-copy p:last-child { margin-bottom: 0; }
.intro-copy p strong { color: var(--color-primary); font-weight: 600; }

.intro-lead {
    font-size: 1.08rem !important;
    color: var(--color-primary) !important;
}

@media (max-width: 991.98px) {
    .intro-head { margin-bottom: 1.5rem; }
    .intro-copy { max-width: none; }
    .intro-shield { margin: 1.5rem 0 2rem; }
    .intro-shield img { max-width: 240px; width: 60%; }
}

/* Down-arrow indicator (matches wireframe arrows pointing into cards) */
.arrow-down-wrap {
    display: flex;
    justify-content: center;
    gap: 50%;
    margin: 1.5rem auto 2rem;
    max-width: 800px;
    padding: 0 4rem;
}
.arrow-down {
    width: 2px;
    height: 50px;
    background: var(--color-primary);
    position: relative;
}
.arrow-down::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--color-primary);
}

/* Model cards */
.model-cards { margin-top: 1rem; }

.model-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2.2rem;
    height: 100%;
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-accent);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.quote-mark {
    position: absolute;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--color-accent-soft);
    font-weight: 700;
    pointer-events: none;
}
.quote-open  { top: 0.5rem; left: 1rem; }
.quote-close { bottom: 0.2rem; right: 1rem; }

.model-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.model-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.model-card h3 {
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}
.model-sub {
    font-size: 0.92rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1.1rem;
}

.model-points {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 1.5rem;
    display: grid;
    gap: 0.5rem;
}
.model-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    color: var(--color-primary);
}
.model-points i {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.model-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: gap .2s ease, border-color .2s ease;
}
.model-link:hover {
    gap: 0.8rem;
    border-bottom-color: var(--color-accent);
}

/* ==========================================================================
   PROOF / STATS
   ========================================================================== */
.proof-section {
    padding: 5rem 0;
    background: #ffffff;
}

.proof-copy p {
    font-size: 1rem;
    color: var(--color-secondary);
}

.impact-callout {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--color-accent);
}
.impact-callout h3 { margin-bottom: 0.4rem; }
.impact-intro {
    font-size: 0.92rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.impact-bars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.1rem;
}
.impact-bar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.45rem;
    font-size: 0.93rem;
    font-weight: 500;
}
.impact-label { color: var(--color-primary); }
.impact-pct { color: var(--color-accent); font-weight: 700; }

.impact-bar {
    width: 100%;
    height: 8px;
    background: #eaeaea;
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.impact-bar span {
    display: block;
    height: 100%;
    background: var(--color-accent);
    border-radius: var(--radius-pill);
    transition: width 1s ease;
}

/* Stat cards */
.stat-grid { margin-top: 2rem; }

.stat-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-card.highlight {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}
.stat-card.highlight .stat-number,
.stat-card.highlight .stat-label { color: #ffffff; }
.stat-card.highlight .stat-number span { color: #ffffff; }
.stat-card.highlight .stat-label { opacity: 0.9; }
.stat-card.highlight .stat-icon { color: #ffffff; background: rgba(255,255,255,0.18); }

.stat-icon {
    font-size: 1.6rem;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.6rem;
}
.stat-number span { color: var(--color-accent); }

.stat-label {
    font-size: 0.88rem;
    color: var(--color-secondary);
    line-height: 1.45;
}

/* ==========================================================================
   BLOGS
   ========================================================================== */
.blogs-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}
.blogs-section .section-head { margin-bottom: 2.5rem; }
.blogs-section .section-head h2 { margin-bottom: 0; }

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-thumb {
    height: 170px;
    background: var(--color-accent);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    overflow: hidden;
}
.blog-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.6;
}
.blog-thumb-2 { background: #1a1a1d; }
.blog-thumb-3 { background: var(--color-primary); }

.blog-category {
    display: inline-block;
    background: #ffffff;
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.blog-body {
    padding: 1.4rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
    display: block;
}
.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}
.blog-card p {
    font-size: 0.92rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    flex: 1;
}
.blog-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.blog-link i { transition: transform .2s ease; }
.blog-link:hover i { transform: translateX(3px); }

/* Blog scroll slider */
.blog-scroll-outer {
    position: relative;
}
.blog-scroll-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 6px; /* room for card hover shadow */
}
.blog-scroll-track::-webkit-scrollbar { display: none; }
.blog-scroll-item {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    min-width: 260px;
}
.blog-scroll-item .blog-card { height: 100%; }

@media (max-width: 991.98px) {
    .blog-scroll-item { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 767.98px) {
    .blog-scroll-item { flex: 0 0 84%; }
}

/* Nav row below the slider */
.blog-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Prev / next nav buttons */
.blog-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    padding: 0;
    line-height: 1;
}
.blog-nav-btn:hover {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}
.blog-nav-btn.is-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ==========================================================================
   NEWSLETTER POPUP (Elementor modal — JS triggered)
   ========================================================================== */
/* Body scroll lock when popup open */
body.ps-modal-open { overflow: hidden !important; }

/* ==========================================================================
   NEWSLETTER MODAL
   ========================================================================== */
.ps-modal-dialog {
    max-width: 520px;
}
.ps-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.ps-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 0.85rem;
    color: var(--color-primary);
    transition: background .2s ease, color .2s ease;
    line-height: 1;
}
.ps-modal-close:hover {
    background: var(--color-accent);
    color: #ffffff;
}
.ps-modal-body {
    padding: 0;
}
/* Elementor template ke extra margin/padding reset */
.ps-modal-body .elementor {
    margin: 0 !important;
}
.ps-modal-body .elementor-section-wrap > .elementor-section:first-child {
    margin-top: 0 !important;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-section .section-head { margin-bottom: 2rem; }

.faq-list { display: grid; gap: 0.8rem; }

.faq-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-accent); }

.faq-q {
    display: inline-flex;
    align-items: baseline;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}
.faq-num {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    line-height: 1;
}
.faq-item[open] .faq-num {
    background: var(--color-accent);
    color: #ffffff;
}

.faq-bullets {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0.8rem;
    display: grid;
    gap: 0.5rem;
}
.faq-bullets li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
}
.faq-bullets li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

.faq-foot {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: var(--color-primary);
    position: relative;
    transition: background .2s ease, transform .25s ease;
}
.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transition: transform .25s ease;
}
.faq-toggle::before {
    width: 10px; height: 2px;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 2px; height: 10px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle { background: var(--color-accent); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-body {
    padding: 0 1.4rem 1.3rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
}
.faq-body p { margin: 0; }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
    background: var(--color-accent);
    color: #ffffff;
    padding: 4rem 0;
}
.cta-strip h2 { color: #ffffff; margin-bottom: 0.4rem; }
.cta-strip p { color: rgba(255, 255, 255, 0.88); margin: 0; }
.cta-strip .btn-primary-pill {
    background: #ffffff;
    color: var(--color-accent);
}
.cta-strip .btn-primary-pill:hover,
.cta-strip .btn-primary-pill:focus {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 14px;
}
.footer-brand img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-about {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 360px;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}
.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-contact i { color: var(--color-accent); margin-top: 2px; }

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background .2s ease, color .2s ease;
}
.footer-socials a:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.footer-top { padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p { margin: 0; color: inherit; }
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}
.footer-legal a:hover { color: var(--color-accent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        padding: 1rem 0;
        border-top: 1px solid var(--color-border);
        margin-top: 0.8rem;
    }
    .site-header .navbar-nav { margin-bottom: 1rem; }
    .header-actions { justify-content: flex-start; }
    .hero-section { padding: 3.5rem 0 4rem; }
    .arrow-down-wrap { display: none; }
    .cta-strip { text-align: center; }
    .cta-strip .text-lg-end { text-align: center !important; }
}

@media (max-width: 767.98px) {
    .hero-section { padding: 2.5rem 0 3rem; }
    .hero-headline { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }

    .intro-section, .proof-section, .blogs-section, .faq-section { padding: 3.5rem 0; }

    .model-card { padding: 2rem 1.5rem; }
    .quote-mark { font-size: 3.2rem; }

    .impact-callout { padding: 1.5rem; }

    .stat-card { padding: 1.4rem 1rem; }
    .stat-number { font-size: 1.5rem; }

    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575.98px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn-primary-pill,
    .hero-cta .btn-outline-pill { justify-content: center; }
}
