/* ══════════════════════════════════════
DESIGN TOKENS
══════════════════════════════════════ */
:root {
    --coral: #E8521A;
    --coral2: #F97316;
    --corall: #FEF0EB;
    --corald: #C23D0D;
    --navy: #0A1628;
    --navy2: #14253D;
    --navy3: #1E3352;
    --cream: #FDFAF6;
    --stone: #F4EFE9;
    --stone2: #EBE4DB;
    --green: #0C6B3A;
    --greenl: #ECFDF5;
    --ink: #18120C;
    --mid: #6B6058;
    --muted: #A89F96;
    --border: rgba(24, 18, 12, .08);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Syne', system-ui, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --sh-card: 0 2px 14px rgba(24, 18, 12, .07), 0 1px 3px rgba(24, 18, 12, .04);
    --sh-float: 0 20px 60px rgba(24, 18, 12, .16), 0 4px 16px rgba(24, 18, 12, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.blog-single .container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ══════════════════════════════════════
SEMANTIC HTML ELEMENTS & TYPOGRAPHY
══════════════════════════════════════ */

/* Base Headings - All h1-h6 consistent spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -.035em;
    line-height: 1.15;
}

/* Page Title Heading */
h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

h1 em {
    font-style: italic;
    color: var(--coral);
}

/* Section Headings */
h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

h2 em {
    font-style: italic;
    color: var(--coral);
}

/* Subsection Headings */
h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

h3 em {
    font-style: italic;
    color: var(--coral);
}

/* Supporting Headings */
h4 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* Minor Headings */
h5 {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Smallest Headings */
h6 {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.5;
    margin-bottom: 6px;
    color: var(--mid);
}

/* Paragraph Base Styles */
p {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 16px;
}

/* Paragraph emphasis */
p strong,
p b {
    color: var(--ink);
    font-weight: 700;
}

p em,
p i {
    font-style: italic;
    color: var(--ink);
}

p a {
    color: var(--coral);
    font-weight: 500;
    transition: color .2s;
}

p a:hover {
    color: var(--corald);
    text-decoration: underline;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--coral);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(232, 82, 26, .04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--ink);
    font-size: 0.99rem;
    line-height: 1.8;
}

blockquote p {
    margin-bottom: 8px;
}

blockquote p:last-child {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--mid);
    font-weight: 500;
}

/* Code blocks */
code,
pre {
    font-family: 'Monaco', 'Courier New', monospace;
    background: var(--navy2);
    color: #fff;
    border-radius: 6px;
}

code {
    display: inline;
    padding: 3px 6px;
    font-size: 0.88rem;
}

pre {
    display: block;
    padding: 16px 20px;
    overflow-x: auto;
    line-height: 1.6;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

pre code {
    background: none;
    color: inherit;
    padding: 0;
    display: inline;
}

/* ══════════════════════════════════════
ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes blob {

    0%,
    100% {
        border-radius: 58% 42% 52% 48%/44% 54% 46% 56%
    }

    25% {
        border-radius: 72% 28% 44% 56%/60% 38% 62% 40%
    }

    50% {
        border-radius: 38% 62% 68% 32%/46% 70% 30% 54%
    }

    75% {
        border-radius: 54% 46% 32% 68%/38% 60% 40% 62%
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    30% {
        transform: translateY(-14px) rotate(-1.5deg)
    }

    60% {
        transform: translateY(-8px) rotate(1deg)
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 82, 26, .6)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 82, 26, 0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes babyBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-6px)
    }

    60% {
        transform: translateY(-3px)
    }
}

@keyframes wink {

    0%,
    88%,
    100% {
        transform: scaleY(1)
    }

    92% {
        transform: scaleY(0.08) scaleX(1.1)
    }
}

@keyframes handWave {

    0%,
    100% {
        transform: rotate(0deg) translateY(0)
    }

    25% {
        transform: rotate(-12deg) translateY(-4px)
    }

    75% {
        transform: rotate(8deg) translateY(-2px)
    }
}

@keyframes confetti {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1
    }

    100% {
        transform: translateY(60px) rotate(720deg);
        opacity: 0
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 600
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

/* Scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.rv.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

/* ══════════════════════════════════════
CURSOR
══════════════════════════════════════ */
#cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--coral);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .1s, width .3s var(--spring), height .3s var(--spring), opacity .3s;
    mix-blend-mode: multiply;
}

#cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 82, 26, .35);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .18s var(--ease), width .3s var(--spring), height .3s var(--spring), border-color .3s;
}

body:hover #cursor {
    opacity: 1;
}

@media(hover:none) {

    #cursor,
    #cursor-ring {
        display: none;
    }
}

/* ══════════════════════════════════════
BUTTONS
══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 100px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .01em;
    transition: transform .25s var(--spring), box-shadow .25s, background .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    padding: 14px 28px;
    box-shadow: 0 4px 20px rgba(232, 82, 26, .38);
}

.btn-coral:hover {
    background: var(--coral2);
    box-shadow: 0 8px 32px rgba(232, 82, 26, .5);
}

.btn-ghost-w {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .22);
    padding: 13px 26px;
    backdrop-filter: blur(8px);
}

.btn-ghost-w:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .5);
}

.btn-white {
    background: #fff;
    color: var(--coral);
    padding: 14px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.btn-white:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.btn-outline {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
    padding: 12px 26px;
}

.btn-outline:hover {
    background: var(--corall);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
    padding: 14px 28px;
}

.btn-dark:hover {
    background: var(--navy);
}

/* ══════════════════════════════════════
NAVIGATION
══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0 28px;
}

.nav.scrolled {
    background: rgba(253, 250, 246, .93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s var(--spring);
}

.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.08);
}

.logo-mark svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -.02em;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: .85rem;
    font-weight: 600;
    color: var(--mid);
    transition: color .2s;
    letter-spacing: .01em;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    padding: 9px 22px;
    font-size: .84rem;
}

.nav-ham {
    display: none;
    width: 38px;
    height: 38px;
    background: var(--stone);
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.nav-ham:hover {
    background: var(--stone2);
}

.nav-ham svg {
    width: 18px;
    height: 18px;
    color: var(--ink);
}

/* MOBILE MENU */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: var(--cream);
    flex-direction: column;
    padding: 0 28px;
}

.mob-menu.open {
    display: flex;
}

.mob-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.mob-close {
    width: 38px;
    height: 38px;
    background: var(--stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mob-close svg {
    width: 17px;
    height: 17px;
    color: var(--ink);
}

.mob-links {
    display: flex;
    flex-direction: column;
}

.mob-links a {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--ink);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
    cursor: pointer;
}

.mob-links a:hover {
    color: var(--coral);
}

.mob-dl {
    margin-top: 28px;
}

/* ══════════════════════════════════════
PAGES (SPA routing)
══════════════════════════════════════ */
/* .page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn .4s var(--ease);
} */

/* ══════════════════════════════════════
MODAL — COMING SOON
══════════════════════════════════════ */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(10, 22, 40, .82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 28px;
    padding: 48px 44px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: modalIn .45s var(--spring) both;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
    position: relative;
}

.modal-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: var(--stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.modal-x:hover {
    background: var(--stone2);
}

.modal-x svg {
    width: 16px;
    height: 16px;
    color: var(--mid);
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--corall);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--corald);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.modal-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse 2s infinite;
}

.modal-icon {
    width: 74px;
    height: 74px;
    background: var(--corall);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 12px rgba(232, 82, 26, .08);
}

.modal-icon svg {
    width: 36px;
    height: 36px;
    color: var(--coral);
}

.modal-h {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 9px;
    line-height: 1.1;
}

.modal-p {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

@media(max-width:480px) {
    .modal-form {
        flex-direction: column;
    }

    .modal {
        padding: 36px 24px;
    }
}

.modal-inp {
    flex: 1;
    background: var(--stone);
    border: 1.5px solid transparent;
    border-radius: 100px;
    padding: 12px 18px;
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, background .2s;
}

.modal-inp:focus {
    border-color: var(--coral);
    background: #fff;
}

.modal-note {
    font-size: .7rem;
    color: var(--muted);
}

.modal-note#reg-msg {
    font-size: .8rem;
}

.modal-stores {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.store-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    border-radius: 12px;
    padding: 10px 16px;
    cursor: not-allowed;
    opacity: .45;
}

.store-pill svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.store-lbl {
    font-size: .58rem;
    display: block;
    opacity: .7;
}

.store-nm {
    font-size: .82rem;
    font-weight: 700;
    display: block;
    color: rgba(255, 255, 255, .7);
}

/* ══════════════════════════════════════
HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 28px 60px;
}

/* Gradient mesh background */
.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    will-change: border-radius;
}

.mb1 {
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(232, 82, 26, .22), transparent 70%);
    top: -160px;
    right: -120px;
    animation: blob 16s ease-in-out infinite;
}

.mb2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(249, 115, 22, .12), transparent 70%);
    bottom: -100px;
    left: -60px;
    animation: blob 13s ease-in-out infinite 4s;
}

.mb3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(12, 107, 58, .14), transparent 70%);
    top: 45%;
    left: 38%;
    animation: blob 10s ease-in-out infinite 7s;
}

.mb4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, .1), transparent 70%);
    top: 20%;
    left: 18%;
    animation: blob 12s ease-in-out infinite 2s;
}

/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* Noise grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .4;
    mix-blend-mode: overlay;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 2;
}

/* Hero LEFT copy */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: fadeUp .85s var(--ease) both;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5.2vw, 4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.035em;
    margin-bottom: 20px;
    animation: fadeUp .9s var(--ease) .08s both;
}

.hero-h1 em {
    font-style: italic;
    color: var(--coral);
}

.hero-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 440px;
    animation: fadeUp .9s var(--ease) .16s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .9s var(--ease) .24s both;
}

.hero-trust {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp .9s var(--ease) .32s both;
}

.trust-avas {
    display: flex;
}

.trust-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .52rem;
    font-weight: 800;
    color: #fff;
    margin-right: -8px;
    font-family: var(--sans);
}

.trust-text {
    font-size: .78rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.45;
    margin-left: 16px;
}

.trust-text strong {
    color: rgba(255, 255, 255, .78);
}

/* Hero RIGHT — Baby scene */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeUp 1.1s var(--ease) .12s both;
}

.baby-scene {
    position: relative;
    width: 100%;
    max-width: 460px;
}

/* Glassy card wrapping baby */
.baby-glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 28px 28px 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
}

.baby-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07) 0%, transparent 50%);
    pointer-events: none;
}

.baby-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
}

/* ── THE BABIES SVG ── */
.baby-illo-wrap {
    width: 100%;
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Health score mini card inside glass */
.health-mini {
    margin-top: 14px;
    background: rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.hm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}

.hm-label {
    font-size: .65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hm-score {
    font-family: var(--serif);
    font-size: 1.55rem;
    color: var(--coral);
    letter-spacing: -.03em;
    font-weight: 600;
}

.hm-bar {
    margin-bottom: 7px;
}

.hm-bar-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.hm-bar-label {
    font-size: .6rem;
    color: rgba(255, 255, 255, .4);
}

.hm-bar-val {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .68);
}

.hm-track {
    height: 4px;
    background: rgba(255, 255, 255, .07);
    border-radius: 2px;
}

.hm-fill {
    height: 4px;
    border-radius: 2px;
}

/* Floating stat cards */
.stat-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 12px 15px;
    box-shadow: var(--sh-float);
    z-index: 10;
    min-width: 100px;
}

.sc1 {
    top: -8px;
    right: -22px;
    animation: floatSlow 4.5s ease-in-out infinite .5s;
}

.sc2 {
    bottom: 68px;
    left: -24px;
    animation: floatSlow 5.2s ease-in-out infinite 1s;
}

.sc3 {
    bottom: 10px;
    right: -18px;
    animation: floatSlow 4.8s ease-in-out infinite .7s;
}

.sc-lbl {
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3px;
}

.sc-val {
    font-size: .96rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.025em;
    line-height: 1.1;
}

.sc-sub {
    font-size: .62rem;
    color: var(--mid);
    margin-top: 2px;
}

.sc-mini-bar {
    height: 3px;
    background: #F0EBE4;
    border-radius: 2px;
    margin-top: 5px;
}

.sc-mini-fill {
    height: 3px;
    border-radius: 2px;
}

.sc-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-row svg {
    width: 11px;
    height: 11px;
}

/* ══════════════════════════════════════
TICKER
══════════════════════════════════════ */
.ticker {
    background: var(--stone);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 32s linear infinite;
}

.tick-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 38px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--mid);
    white-space: nowrap;
    letter-spacing: .01em;
}

.tick-item svg {
    width: 13px;
    height: 13px;
    color: var(--coral);
    flex-shrink: 0;
}

.tick-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--stone2);
}

/* ══════════════════════════════════════
STATS BAR
══════════════════════════════════════ */
.stats-bar {
    background: var(--ink);
    padding: 52px 0;
}

.stats-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: var(--coral);
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.45;
    font-weight: 400;
}

/* ══════════════════════════════════════
SECTION PRIMITIVES
══════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.section-h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: -.04em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 14px;
}

.section-h2 em {
    font-style: italic;
    color: var(--coral);
}

.section-sub {
    font-size: .97rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 520px;
}

/* ══════════════════════════════════════
HOW IT WORKS
══════════════════════════════════════ */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    margin-top: 58px;
}

.hiw-card {
    background: var(--cream);
    padding: 42px 34px;
    position: relative;
    overflow: hidden;
    transition: background .35s;
}

.hiw-card:hover {
    background: var(--stone);
}

.hiw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.hiw-card:hover::before {
    transform: scaleX(1);
}

.hiw-num {
    font-family: var(--serif);
    font-size: 3.8rem;
    color: rgba(24, 18, 12, .06);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -.06em;
}

.hiw-icon {
    width: 50px;
    height: 50px;
    background: var(--coral);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .4s var(--spring), box-shadow .3s;
}

.hiw-card:hover .hiw-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(232, 82, 26, .3);
}

.hiw-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.hiw-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.hiw-body {
    font-size: .86rem;
    color: var(--mid);
    line-height: 1.7;
}

/* ══════════════════════════════════════
FEATURES
══════════════════════════════════════ */
.features-section {
    padding: 100px 0;
    background: var(--navy);
}

.features-section .eyebrow {
    color: rgba(255, 255, 255, .38);
}

.features-section .section-h2 {
    color: #fff;
}

.features-section .section-sub {
    color: rgba(255, 255, 255, .38);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .06);
    border-radius: 26px;
    overflow: hidden;
    margin-top: 58px;
}

.feat-card {
    background: var(--navy);
    padding: 36px 30px;
    border: 1px solid rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(232, 82, 26, .1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}

.feat-card:hover {
    background: rgba(255, 255, 255, .03);
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-card.highlight {
    background: linear-gradient(135deg, rgba(232, 82, 26, .13) 0%, rgba(10, 22, 40, .9) 100%);
    border-color: rgba(232, 82, 26, .2);
}

.feat-card.highlight::after {
    opacity: 1;
}

.feat-badge {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(232, 82, 26, .15);
    border-radius: 100px;
    padding: 3px 11px;
    margin-bottom: 12px;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform .4s var(--spring);
}

.feat-card:hover .feat-icon {
    transform: scale(1.08) rotate(-4deg);
}

.feat-icon svg {
    width: 26px;
    height: 26px;
}

.feat-title {
    font-size: 1.04rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 9px;
}

.feat-body {
    font-size: .84rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7;
}

/* ══════════════════════════════════════
DEMO SECTION (WhatsApp)
══════════════════════════════════════ */
.demo-section {
    padding: 100px 0;
    background: var(--stone);
}

.demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* WhatsApp UI */
.wa-wrap {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.wa-card {
    background: #E5DDD5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .16);
}

.wa-header {
    background: #128C7E;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-header-icon svg {
    width: 19px;
    height: 19px;
    color: #fff;
}

.wa-name {
    font-size: .84rem;
    font-weight: 600;
    color: #fff;
}

.wa-status {
    font-size: .68rem;
    color: rgba(255, 255, 255, .7);
}

.wa-body {
    padding: 14px;
}

.msg-row {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.msg-row.sent {
    align-items: flex-end;
}

.msg-row.recv {
    align-items: flex-start;
}

.bubble {
    max-width: 88%;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: .8rem;
    line-height: 1.5;
}

.bubble.s {
    background: #DCF8C6;
    border-radius: 12px 12px 2px 12px;
    color: #1a1a1a;
}

.bubble.r {
    background: #fff;
    border-radius: 12px 12px 12px 2px;
    color: #1a1a1a;
}

.bubble.card {
    background: #fff;
    padding: 0;
    overflow: hidden;
    min-width: 195px;
    border-radius: 12px 12px 12px 2px;
}

.card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    padding: 12px 14px;
}

.card-head-title {
    font-size: .73rem;
    font-weight: 700;
    color: #fff;
}

.card-head-sub {
    font-size: .62rem;
    color: rgba(255, 255, 255, .42);
    margin-top: 2px;
}

.card-body {
    padding: 10px 14px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #F5F5F5;
}

.card-row:last-child {
    border: none;
}

.card-k {
    font-size: .7rem;
    color: #6B6560;
}

.card-v {
    font-size: .7rem;
    font-weight: 700;
    color: #1a1a1a;
}

.card-v.red {
    color: #DC2626;
}

.msg-time {
    font-size: .57rem;
    color: var(--mid);
    margin-top: 2px;
    text-align: right;
}

/* Alert floating */
.alert-float {
    position: absolute;
    top: -20px;
    right: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 13px 15px;
    box-shadow: var(--sh-float);
    width: 196px;
    animation: floatSlow 4.2s ease-in-out infinite;
}

.af-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.af-icon {
    width: 27px;
    height: 27px;
    background: #FEF2F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.af-icon svg {
    width: 13px;
    height: 13px;
    color: #DC2626;
}

.af-title {
    font-size: .7rem;
    font-weight: 700;
    color: #991B1B;
}

.af-body {
    font-size: .63rem;
    color: #B91C1C;
    line-height: 1.45;
}

.af-bar {
    height: 4px;
    background: #FEE2E2;
    border-radius: 2px;
    margin-top: 7px;
}

.af-fill {
    height: 4px;
    background: #DC2626;
    border-radius: 2px;
    width: 56%;
}

/* Demo copy */
.demo-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.demo-feat-icon {
    width: 42px;
    height: 42px;
    background: var(--corall);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform .3s var(--spring);
}

.demo-feat:hover .demo-feat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.demo-feat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--coral);
}

.demo-feat-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.demo-feat-body {
    font-size: .84rem;
    color: var(--mid);
    line-height: 1.65;
}

/* ══════════════════════════════════════
NUTRITION TABLE
══════════════════════════════════════ */
.nutrition-section {
    padding: 100px 0;
    background: var(--cream);
}

.nt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nutri-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 32px;
}

.nutri-table th {
    background: var(--ink);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    letter-spacing: .03em;
}

.nutri-table td {
    padding: 11px 16px;
    font-size: .84rem;
    border-bottom: 1px solid var(--border);
}

.nutri-table tr:last-child td {
    border: none;
}

.nutri-table tr:nth-child(even) td {
    background: var(--stone);
}

.nt-food {
    font-weight: 600;
}

.nt-hindi {
    font-size: .7rem;
    color: var(--mid);
}

.nt-iron {
    font-weight: 700;
    color: #DC2626;
}

.nt-badge {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.nb-high {
    background: #FEE2E2;
    color: #991B1B;
}

.nb-mid {
    background: #FEF3C7;
    color: #92400E;
}

/* Dark chart box */
.chart-box {
    background: var(--navy);
    border-radius: 24px;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.chart-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 82, 26, .15), transparent 70%);
    top: -80px;
    right: -70px;
}

.cb-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 400;
}

.cb-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px;
}

.cb-bar {
    margin-bottom: 13px;
}

.cb-bar-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cb-bar-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .48);
}

.cb-bar-val {
    font-size: .72rem;
    font-weight: 700;
}

.cb-track {
    height: 6px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
}

.cb-fill {
    height: 6px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.cb-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    animation: shimmer 2.5s infinite;
}

.cb-score {
    margin-top: 22px;
    background: rgba(255, 255, 255, .05);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cb-score-ring {
    position: relative;
    flex-shrink: 0;
}

.cb-score-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cb-score-num {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    font-weight: 600;
}

.cb-score-txt {
    font-size: .46rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
}

.cb-score-right .title {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
}

.cb-score-right .sub {
    font-size: .68rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 3px;
}

/* ══════════════════════════════════════
TESTIMONIALS
══════════════════════════════════════ */
.testi-section {
    padding: 100px 0;
    background: var(--stone);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.testi-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--sh-card);
    transition: transform .35s var(--spring), box-shadow .35s;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--coral2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.testi-card:hover::before {
    transform: scaleX(1);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(24, 18, 12, .12);
}

.testi-card.dark {
    background: var(--navy);
}

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.tc-stars svg {
    width: 13px;
    height: 13px;
    color: #F59E0B;
    fill: #F59E0B;
}

.tc-quote {
    font-family: var(--serif);
    font-size: .96rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 20px;
}

.testi-card.dark .tc-quote {
    color: #fff;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--sans);
}

.tc-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
}

.testi-card.dark .tc-name {
    color: #fff;
}

.tc-city {
    font-size: .7rem;
    color: var(--mid);
}

.testi-card.dark .tc-city {
    color: rgba(255, 255, 255, .38);
}

/* ══════════════════════════════════════
FAQ
══════════════════════════════════════ */
.faq-section {
    padding: 100px 0;
    background: var(--navy);
}

.faq-section .eyebrow {
    color: rgba(255, 255, 255, .35);
}

.faq-section .section-h2 {
    color: #fff;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 52px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
    cursor: pointer;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-q-text {
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    letter-spacing: .005em;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, transform .35s var(--spring);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, .5);
}

.faq-item.open .faq-toggle {
    background: var(--coral);
    transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
    color: #fff;
}

.faq-answer {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease), padding .35s;
}

.faq-item.open .faq-answer {
    max-height: 280px;
    padding-top: 13px;
}

.faq-side {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-stat .big-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 4px;
}

.faq-stat .big-num span {
    color: var(--coral);
}

.faq-stat .stat-lbl {
    font-size: .8rem;
    color: rgba(255, 255, 255, .36);
}

.faq-stat .stat-desc {
    font-size: .74rem;
    color: rgba(255, 255, 255, .2);
    margin-top: 3px;
    line-height: 1.45;
}

.faq-divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
}

/* ══════════════════════════════════════
BLOG
══════════════════════════════════════ */
.blog-section {
    padding: 100px 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-card);
    transition: transform .35s var(--spring), box-shadow .35s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(24, 18, 12, .12);
}

.blog-thumb {
    height: 175px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb svg {
    width: 72px;
    height: 72px;
    color: rgba(255, 255, 255, .06);
}

.blog-thumb-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 82, 26, .3), transparent 60%);
}

.blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--coral);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.blog-body {
    padding: 20px 22px 22px;
}

.blog-meta {
    font-size: .68rem;
    color: var(--mid);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta svg {
    width: 11px;
    height: 11px;
}

.blog-title {
    font-size: .94rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    letter-spacing: -.01em;
    margin-bottom: 9px;
}

.blog-excerpt {
    font-size: .8rem;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    font-weight: 700;
    color: var(--coral);
}

.blog-read svg {
    width: 12px;
    height: 12px;
    transition: transform .2s;
}

.blog-card:hover .blog-read svg {
    transform: translateX(4px);
}

/* ══════════════════════════════════════
PAGINATION FOR BLOG
══════════════════════════════════════ */
/* ==========================================================================
   TINYTUMS CLEAN PAGINATION SYSTEM
   ========================================================================== */

/* Container wrapper centering alignment */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem auto 2rem;
    width: 100%;
}

/* Flexbox list architecture reset */
.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Clean layout spacing without old-school margins */
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-list li {
    margin: 0;
    padding: 0;
}

/* Base style for individual item links */
.pagination-list .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; /* Standard accessible finger tap target height/width */
    height: 44px;
    padding: 0 14px;
    border-radius: 50px; /* Modern, clean rounded pill design */
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}

/* Soft hover engine using your ease curves */
.pagination-list .page-numbers:hover {
    color: var(--coral);
    border-color: var(--coral2);
    background-color: var(--corall);
    transform: translateY(-2px);
}

/* Highly visible active/current page layout rule */
.pagination-list li.active .page-numbers,
.pagination-list .page-numbers.current {
    color: var(--cream);
    background-color: var(--coral);
    border-color: var(--coral);
    box-shadow: var(--sh-card);
    cursor: default;
    pointer-events: none; /* Prevents clicks on already active selection */
    transform: none;
}

/* Unique variation styling for 'Next' and 'Prev' text buttons */
.pagination-list .page-numbers.next,
.pagination-list .page-numbers.prev {
    padding: 0 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--stone);
    border-color: transparent;
}

.pagination-list .page-numbers.next:hover,
.pagination-list .page-numbers.prev:hover {
    background-color: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}
/* ══════════════════════════════════════
CTA BANNER
══════════════════════════════════════ */
.cta-section {
    padding: 80px 28px;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    top: -240px;
    right: -80px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .07);
    bottom: -120px;
    left: -40px;
    pointer-events: none;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-h2 {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3.8vw, 2.8rem);
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 14px;
}

.cta-h2 em {
    font-style: italic;
}

.cta-p {
    font-size: .97rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}



/* ══════════════════════════════════════
FOOTER
══════════════════════════════════════ */
footer {
    background: var(--ink);
    padding: 60px 28px 30px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--coral);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark svg {
    width: 17px;
    height: 17px;
    color: #fff;
}

.footer-logo-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 400;
}

.footer-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    max-width: 240px;
    margin-bottom: 18px;
}

.footer-dpiit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9px;
    padding: 7px 13px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.footer-dpiit svg {
    width: 13px;
    height: 13px;
    color: var(--coral);
}

.footer-col-title {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.footer-copy a{
	text-decoration: underline;
}
/* ══════════════════════════════════════
INNER PAGES
══════════════════════════════════════ */
.inner-hero {
    padding: 118px 28px 66px;
    background: var(--stone);
}


.inner-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.inner-h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 13px;
    line-height: 1.1;
}

.inner-h1 em {
    font-style: italic;
    color: var(--coral);
}

.inner-sub {
    font-size: .97rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 590px;
}

.inner-content {
    padding: 66px 0px 100px;
}


/* Prose */
.prose h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    letter-spacing: -.035em;
    color: var(--ink);
    margin: 36px 0 12px;
    line-height: 1.2;
}

.prose h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 8px;
}

.prose p {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.prose ul,
.prose ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.prose li {
    font-size: .93rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 6px;
}

.prose a {
    color: var(--coral);
    font-weight: 500;
}

.prose a:hover {
    text-decoration: underline;
}

.prose strong {
    color: var(--ink);
    font-weight: 700;
}

.callout {
    border-radius: 0 14px 14px 0;
    padding: 16px 20px;
    margin: 22px 0;
}

.callout p {
    margin: 0;
    font-weight: 500;
    font-size: .92rem;
}

.callout-coral {
    background: var(--corall);
    border-left: 4px solid var(--coral);
}

.callout-coral p {
    color: var(--corald);
}

.callout-yellow {
    background: #FEF3C7;
    border-left: 4px solid #D97706;
}

.callout-yellow p {
    color: #92400E;
}

.callout-blue {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
}

.callout-blue p {
    color: #1E40AF;
}

.callout-green {
    background: var(--greenl);
    border-left: 4px solid var(--green);
}

.callout-green p {
    color: #065F46;
}

/* Team cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.team-card {
    background: var(--stone);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .3s var(--spring);
}

.team-card:hover {
    transform: translateY(-3px);
}

.team-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--sans);
}

.team-name {
    font-weight: 700;
    font-size: .94rem;
    color: var(--ink);
}

.team-role {
    font-size: .76rem;
    color: var(--mid);
    margin-top: 3px;
    line-height: 1.4;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.cf-form {
    background: var(--stone);
    border-radius: 20px;
    padding: 24px;
}

.cf-group {
    margin-bottom: 16px;
}

.cf-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 6px;
}

.cf-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    padding: 12px 15px;
    font-family: var(--sans);
    font-size: .88rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.cf-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(232, 82, 26, .1);
}

.cf-textarea {
    min-height: 100px;
    resize: vertical;
}

.cf-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6058' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-info .info-icon {
    width: 40px;
    height: 40px;
    background: var(--corall);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info .info-icon svg {
    width: 19px;
    height: 19px;
    color: var(--coral);
}

.contact-info .info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3px;
}

.contact-info .info-value {
    font-size: .9rem;
    color: var(--ink);
    font-weight: 500;
}

/* ══════════════════════════════════════
BLOG INNER PAGE
══════════════════════════════════════ */
.blog-inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ══════════════════════════════════════
BLOG PAGE CONTENT COMBINATIONS
══════════════════════════════════════ */

/* Blog heading + paragraph spacing */
.blog-single h1 + p,
.blog-single h2 + p,
.blog-single h3 + p,
article h1 + p,
article h2 + p,
article h3 + p {
    margin-top: 12px;
}

/* Heading + list spacing */
h2 + ul,
h2 + ol,
h3 + ul,
h3 + ol,
article h2 + ul,
article h2 + ol,
article h3 + ul,
article h3 + ol {
    margin-top: 12px;
}

/* Paragraph + list spacing */
p + ul,
p + ol,
article p + ul,
article p + ol {
    margin-top: 8px;
}

/* List + paragraph spacing */
ul + p,
ol + p,
article ul + p,
article ol + p {
    margin-top: 16px;
}

/* List + heading spacing */
ul + h2,
ul + h3,
ol + h2,
ol + h3,
article ul + h2,
article ul + h3,
article ol + h2,
article ol + h3 {
    margin-top: 28px;
}

/* Blockquote spacing */
blockquote + p,
p + blockquote {
    margin-top: 20px;
}

blockquote + h2,
blockquote + h3 {
    margin-top: 28px;
}

/* Multiple paragraphs in sequence */
p + p {
    margin-top: 12px;
}

/* ==========================================================================
   SCOPED BLOG SINGLE DETAIL STYLES (.blog-single .detail-inner)
   ========================================================================== */
section.blog-single{
    padding: 50px 0;
} 
.blog-single .detail-inner{
    padding: 24px 0;
} 
/* Unordered Lists */
.blog-single .detail-inner ul {
    font-family: var(--sans);
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.blog-single .detail-inner ul li {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
}

/* Ordered Lists */
.blog-single .detail-inner ol {
    font-family: var(--sans);
    list-style: decimal;
    counter-reset: item;
    padding-left: 24px;
    margin-bottom: 16px;
}

.blog-single .detail-inner ol li {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    counter-increment: item;
}

.blog-single .detail-inner ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
    min-width: 24px;
}

.blog-single .detail-inner ol li strong {
    color: var(--ink);
    font-weight: 600;
}

.blog-single .detail-inner ol li a {
    color: var(--coral);
    font-weight: 500;
    text-decoration: none;
}

.blog-single .detail-inner ol li a:hover {
    text-decoration: underline;
}

/* Nested lists */
.blog-single .detail-inner ul ul,
.blog-single .detail-inner ul ol,
.blog-single .detail-inner ol ul,
.blog-single .detail-inner ol ol {
    margin: 8px 0 8px 16px;
}

.blog-single .detail-inner ul ul li::before,
.blog-single .detail-inner ol ul li::before {
    content: '◦';
    font-size: 1em;
}

/* Definition Lists */
.blog-single .detail-inner dl {
    margin-bottom: 16px;
}

.blog-single .detail-inner dt {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    margin-top: 12px;
    font-size: 0.96rem;
}

.blog-single .detail-inner dt:first-child {
    margin-top: 0;
}

.blog-single .detail-inner dd {
    margin-left: 20px;
    color: var(--mid);
    line-height: 1.7;
    font-size: 0.94rem;
    margin-bottom: 8px;
}

/* Blockquotes */
.blog-single .detail-inner blockquote {
    border-left: 4px solid var(--coral);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(232, 82, 26, .04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--ink);
    font-size: 0.99rem;
    line-height: 1.8;
}

.blog-single .detail-inner blockquote p {
    margin-bottom: 8px;
}

.blog-single .detail-inner blockquote p:last-child {
    margin-bottom: 0;
}

.blog-single .detail-inner blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--mid);
    font-weight: 500;
}

/* Code blocks */
.blog-single .detail-inner code,
.blog-single .detail-inner pre {
    font-family: 'Monaco', 'Courier New', monospace;
    background: var(--navy2);
    color: #fff;
    border-radius: 6px;
}

.blog-single .detail-inner code {
    display: inline;
    padding: 3px 6px;
    font-size: 0.88rem;
}

.blog-single .detail-inner pre {
    display: block;
    padding: 16px 20px;
    overflow-x: auto;
    line-height: 1.6;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.blog-single .detail-inner pre code {
    background: none;
    color: inherit;
    padding: 0;
    display: inline;
}

.blog-single .detail-inner ul li::marker,
.blog-single .detail-inner ol li::marker{
    color: var(--coral);
}

/* ==========================================================================
   TINYTUMS HORIZONTAL META INFO SYSTEM
   ========================================================================== */

/* Main container layout */
.blog-single .meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;  /* Vertically centers all items in the row */
    list-style: none;
    margin: 16px 0;
}

/* Individual list item setup */
.blog-single .meta-info li {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}

/* Handle all active links and wrapper contents */
.blog-single .meta-info li a,
.blog-single .meta-info .cat-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;             /* Clean distance between icons/images and text */
    text-decoration: none;
    color: #2d3748;       /* Highly readable dark color for content */
    transition: color 0.2s var(--ease, ease);
}


/* Images in blog content */
.blog-single .single-inner .main-content-head {
  -webkit-box-shadow: 0px 1px 20px 0px var(--color-rgba-19);
  box-shadow: 0px 1px 20px 0px var(--color-rgba-19);
  border-radius: 8px;
  overflow: hidden;
}

.blog-single .meta-info li a img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}

.blog-single .post-thumbnils {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.blog-single .post-thumbnils img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  box-shadow: var(--sh-card);
  border-radius: 10px;
}
/* .blog-single img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: var(--sh-card);
} */
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25;
}
/* ══════════════════════════════════════
RESPONSIVE
══════════════════════════════════════ */

@media(max-width:1024px) {

    .hero-inner,
    .demo-inner,
    .nt-inner,
    .faq-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

    .feat-grid,
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-inner-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:720px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-ham {
        display: flex;
    }

    .hero {
        padding: 82px 20px 48px;
    }

    .section {
        padding: 64px 0;
    }

    .feat-grid,
    .hiw-grid,
    .testi-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal {
        padding: 36px 22px;
    }

    .modal-form {
        flex-direction: column;
    }

    .faq-inner {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        padding: 90px 20px 48px;
    }

    .cf-form {
        padding: 24px;
    }
}

@media (max-width: 767px) {
  .blog-section .single-blog .blog-content .autor {
    padding-left: 54px;
  }

  .blog-single .meta-info li {
    margin-bottom: 5px;
  }
  .blog-single .meta-info li::before {
    display: none;
  }
  .blog-single .meta-info li:first-child {
    display: block;
    margin-bottom: 15px;
  }
}


/* new css 17-05 */
.wpcf7-not-valid-tip {
    font-size: 0.9rem;
    padding-top: 4px;
}

/* new css 20-05 */
/* Container Spacing */
.post-social-media {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-social-media .share-title {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    color: #18120C; /* --navy */
}

/* Horizontal Inline Alignment */
.post-details .post-social-media ul {
    display: inline-flex;
    gap: 10px;
    padding-left: 10px;
    list-style: none;
    margin-bottom: 0px;
}


.post-details .post-social-media ul li {
    display: inline-block;
}

/* Icon Link - Clean Base Style (No Background) */
.post-details .post-social-media ul li a {
    font-size: 14px;
    color: #18120C; /* --navy2 base icon color */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Explicit SVG Scaling inside layout */
.post-details .post-social-media ul li a svg {
    width: 28px;
    height: 28px;
    fill: currentColor; /* Dynamically inherits colors from standard / hover text declarations */
}

.post-details .post-social-media ul li a:hover {
    color: #E8521A; /* --coral active hover */
}

/* Hover Tooltip Popup */
.post-details .post-social-media ul li a span {
    background-color: #E8521A; /* --coral background */
    color: #FDFAF6; /* --cream text */
    font-size: 12px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    white-space: nowrap; /* Prevents text from wrapping into double lines */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* Prevents any mouse flickering bugs */
}

/* Tooltip Caret / Arrow Indicator */
.post-details .post-social-media ul li a span::before {
    position: absolute;
    content: "";
    left: 50%;
    margin-left: -5px;
    bottom: -10px;
    border: 5px solid #E8521A; /* --coral arrow matching tooltip body */
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
}

/* Active Trigger State */
.post-details .post-social-media ul li a:hover span {
    opacity: 1;
    visibility: visible;
    top: -38px; /* Smooth upward translation push on hover */
}