:root {
    --teal: #159a89;
    --teal-d: #0f7d70;
    --blue: #3aa6de;
    --blue-d: #2b8fc9;
    --purple: #8577c9;
    --purple-d: #6f61b8;
    --amber: #d98a1f;
    --ink: #2b3a48;
    --ink-soft: #45565f;
    --muted: #6b7b86;
    --line: #e4e9ee;
    --bg: #ffffff;
    --bg-soft: #f4f7f9;
    --grad: linear-gradient(115deg, #4f86d0 0%, #7f8fd6 38%, #a98fd0 60%, #57c3c2 100%);
    --grad-soft: linear-gradient(115deg, #eaf1fb 0%, #efeaf8 55%, #e6f6f4 100%);
    --radius: 18px;
    --shadow: 0 10px 30px rgba(30, 50, 70, .08);
    --shadow-lg: 0 18px 50px rgba(30, 50, 70, .14);
    --maxw: 1180px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--ink-soft);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
.f-head {
    font-family: 'Poppins', sans-serif
}

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

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

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 72px 0
}

.section.tight {
    padding: 52px 0
}

[id] {
    scroll-margin-top: 88px
}

.eyebrow {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .8rem;
    padding: 11px 30px;
    border-radius: 40px;
    box-shadow: var(--shadow)
}

.eyebrow.teal {
    background: linear-gradient(120deg, var(--teal), #2fb9a5)
}

.eyebrow.blue {
    background: linear-gradient(120deg, var(--blue), #63c1ef)
}

.eyebrow.purple {
    background: linear-gradient(120deg, var(--purple), #a99be0)
}

.center {
    text-align: center
}

.mt8 {
    margin-top: 8px
}

.mt16 {
    margin-top: 16px
}

.mt24 {
    margin-top: 24px
}

.mt32 {
    margin-top: 32px
}

.sec-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.18;
    margin-top: 22px
}

.sec-title.teal {
    color: var(--teal)
}

.sec-title.blue {
    color: var(--blue)
}

.sec-title.purple {
    color: var(--purple)
}

.lead {
    font-size: 1.06rem;
    color: var(--ink-soft);
    margin-top: 16px
}

p.body+p.body {
    margin-top: 14px
}

.btn {
    display: inline-block;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 26px;
    border-radius: 40px;
    background: var(--grad);
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    border: none;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn.white {
    background: #fff;
    color: var(--blue-d)
}

.btn.lg {
    font-size: 1.05rem;
    padding: 15px 40px
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.nav img {
    height: 42px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav-links a {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: .92rem;
    color: var(--ink);
    transition: color .2s
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--ink);
    cursor: pointer
}

/* HERO */
.hero-img {
    width: 100%;
    display: block
}

.count-strip {
    background: var(--grad);
    color: #fff
}

.count-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 26px 24px
}

.count-label {
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: .04em;
    font-size: 1.05rem
}

.count-label b {
    display: block;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .9
}

.countdown {
    display: flex;
    gap: 14px
}

.cd-box {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    padding: 12px 6px;
    min-width: 74px;
    text-align: center;
    backdrop-filter: blur(4px)
}

.cd-box .n {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1
}

.cd-box .u {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .9;
    margin-top: 4px
}

.count-in .btn {
    background: #fff;
    color: var(--blue-d)
}

/* pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px
}

.pillar {
    display: block;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    color: inherit
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.pill-more {
    display: block;
    margin-top: 16px;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em
}

.pillar.teal .pill-more {
    color: var(--teal)
}

.pillar.blue .pill-more {
    color: var(--blue)
}

.pillar.purple .pill-more {
    color: var(--purple)
}

.pillar:hover .pill-more {
    text-decoration: underline
}

.pillar.teal {
    border-color: #bfe6e0;
    background: linear-gradient(180deg, #f2fbf9, #fff)
}

.pillar.blue {
    border-color: #c7e6f6;
    background: linear-gradient(180deg, #f1f9fe, #fff)
}

.pillar.purple {
    border-color: #d8d1f0;
    background: linear-gradient(180deg, #f6f4fd, #fff)
}

.pillar .lotus {
    width: 88px;
    margin: 0 auto 14px
}

.pillar h3 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: .02em
}

.pillar.teal h3 {
    color: var(--teal)
}

.pillar.blue h3 {
    color: var(--blue)
}

.pillar.purple h3 {
    color: var(--purple)
}

.pillar p {
    margin-top: 12px;
    font-size: .98rem
}

.pill-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-size: .92rem;
    padding: 9px 18px;
    border-radius: 12px;
    line-height: 1.35
}

.pillar.teal .pill-tag {
    background: #e6f6f3;
    color: var(--teal-d)
}

.pillar.blue .pill-tag {
    background: #e6f4fd;
    color: var(--blue-d)
}

.pillar.purple .pill-tag {
    background: #efeafb;
    color: var(--purple-d)
}

.notebox {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-left: 5px solid var(--blue);
    border-radius: 12px;
    padding: 20px 24px;
    color: var(--ink);
    font-weight: 500
}

/* quote */
.quote-card {
    border: 1.5px solid #bfe6e0;
    background: #f2fbf9;
    border-radius: 24px;
    padding: 50px 44px;
    text-align: center;
    max-width: 940px;
    margin: 0 auto
}

.quote-card .lotus {
    width: 74px;
    margin: 0 auto 22px
}

.quote-card h2 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--ink);
    line-height: 1.35
}

.quote-card .q-sub {
    font-style: italic;
    color: var(--teal-d);
    font-size: 1.12rem;
    margin-top: 22px;
    font-family: 'Poppins'
}

/* challenges */
.chal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px
}

.chal {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 14px rgba(30, 50, 70, .05);
    font-family: 'Poppins';
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem
}

.chal .dot {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex: 0 0 auto
}

.chal.teal .dot {
    background: var(--teal)
}

.chal.blue .dot {
    background: var(--blue)
}

.chal.purple .dot {
    background: var(--purple)
}

/* conference two-col */
.conf {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: 44px;
    align-items: center;
    margin-top: 20px
}

.qbox {
    border: 1.5px solid #bfe6e0;
    background: #f2fbf9;
    border-radius: 14px;
    padding: 20px 24px;
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    color: var(--teal-d);
    font-size: 1.05rem;
    margin-bottom: 22px
}

.qbox.blue {
    border-color: #c7e6f6;
    background: #f1f9fe;
    color: var(--blue-d)
}

.speaker-photo {
    text-align: center
}

.speaker-photo .ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.speaker-photo .ring.teal {
    background: var(--teal);
    border: 6px solid #d7efeb
}

.speaker-photo .ring.blue {
    background: var(--blue);
    border: 6px solid #d4ecf9
}

.speaker-photo .ring img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.name-tag {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: .06em;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 1rem
}

.name-tag.teal {
    background: var(--teal)
}

.name-tag.blue {
    background: var(--blue)
}

/* bio */
.bio {
    display: grid;
    grid-template-columns: .9fr 1.5fr;
    gap: 44px;
    align-items: start;
    margin-top: 20px
}

.bio.wide {
    grid-template-columns: 1.5fr 1fr
}

.bio .who {
    text-align: center
}

.bio .who .ring {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 6px solid var(--teal);
    box-shadow: var(--shadow-lg);
    background: #eafaf7
}

.bio .who .ring img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bio .who h3 {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--ink);
    font-size: 1.4rem;
    margin-top: 18px
}

.bio .who .role {
    font-style: italic;
    color: var(--teal-d);
    margin-top: 8px;
    font-family: 'Poppins'
}

.bio .photo-rect {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.creds-title {
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--teal);
    text-transform: uppercase;
    font-size: .9rem;
    margin: 18px 0 12px
}

.creds-title.blue {
    color: var(--blue)
}

.creds {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.creds li {
    position: relative;
    padding-left: 34px;
    line-height: 1.5
}

.creds .ck {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem
}

.creds.blue .ck {
    background: var(--blue)
}

.books {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}

.books img {
    height: 200px;
    width: auto;
    border-radius: 6px;
    box-shadow: var(--shadow)
}

/* panel */
.panel-quote {
    background: #f2eefb;
    border: 1.5px solid #d8d1f0;
    border-radius: 16px;
    padding: 24px 30px;
    color: var(--purple-d);
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-size: 1.08rem
}

.two-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 26px
}

.pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.pcard h4 {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--ink);
    font-size: 1.12rem;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 5px solid var(--purple)
}

/* agenda */
.agenda {
    max-width: 940px;
    margin: 34px auto 0
}

.ag-row {
    display: grid;
    grid-template-columns: 120px 26px 1fr;
    gap: 18px;
    align-items: start;
    padding: 15px 0
}

.ag-time {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--ink);
    text-align: right;
    font-size: 1.02rem
}

.ag-mark {
    position: relative;
    display: flex;
    justify-content: center
}

.ag-mark::before {
    content: "";
    width: 4px;
    background: var(--line);
    position: absolute;
    top: -15px;
    bottom: -15px;
    border-radius: 4px
}

.ag-mark .pin {
    width: 14px;
    height: 22px;
    border-radius: 6px;
    background: var(--ink);
    z-index: 2
}

.ag-row.teal .ag-mark .pin {
    background: var(--teal)
}

.ag-row.blue .ag-mark .pin {
    background: var(--blue)
}

.ag-row.purple .ag-mark .pin {
    background: var(--purple)
}

.ag-row.amber .ag-mark .pin {
    background: var(--amber)
}

.ag-row.teal .ag-time {
    color: var(--teal)
}

.ag-row.blue .ag-time {
    color: var(--blue)
}

.ag-row.purple .ag-time {
    color: var(--purple)
}

.ag-row.amber .ag-time {
    color: var(--amber)
}

.ag-body h4 {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--ink);
    font-size: 1.05rem
}

.ag-row.teal .ag-body h4 {
    color: var(--teal)
}

.ag-row.blue .ag-body h4 {
    color: var(--blue)
}

.ag-row.purple .ag-body h4 {
    color: var(--purple)
}

.ag-row.amber .ag-body h4 {
    color: var(--amber)
}

.ag-body p {
    font-style: italic;
    color: var(--ink-soft);
    margin-top: 2px;
    font-size: .98rem
}

/* results / lab columns */
.results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 36px
}

.rescol {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.rescol .rhead {
    padding: 20px 26px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 1rem
}

.rescol.teal .rhead {
    background: var(--teal)
}

.rescol.purple .rhead {
    background: linear-gradient(120deg, var(--purple), #a99be0)
}

.rescol .rbody {
    padding: 26px
}

.rescol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.rescol li {
    position: relative;
    padding-left: 34px;
    line-height: 1.5
}

.rescol .ck {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem
}

.rescol.teal .ck {
    background: var(--teal)
}

.rescol.purple .ck {
    background: var(--purple)
}

.lab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px
}

.labcard {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff
}

.labcard .lh {
    padding: 18px 24px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .95rem
}

.labcard.teal .lh {
    background: var(--teal)
}

.labcard.blue .lh {
    background: var(--blue)
}

.labcard.purple .lh {
    background: linear-gradient(120deg, var(--purple), #a99be0)
}

.labcard .lb {
    padding: 24px
}

/* info */
.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 36px;
    align-items: start
}

.info-rows {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.irow {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    align-items: baseline
}

.irow .k {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .9rem
}

.irow .v {
    color: var(--ink);
    font-size: 1.05rem
}

.include {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 22px
}

.include b {
    color: var(--blue)
}

.price-card {
    background: var(--grad);
    color: #fff;
    border-radius: 18px;
    padding: 40px 34px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.price-card .plabel {
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: .95
}

.price-card .pnum {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1;
    margin-top: 12px
}

.price-card .pnote {
    margin-top: 14px;
    font-size: .96rem;
    opacity: .95
}

/* brochure band */
.brochure {
    background: var(--grad-soft)
}

.brochure-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 40px;
    box-shadow: var(--shadow)
}

.brochure-in .bt h3 {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--ink);
    font-size: 1.4rem
}

.brochure-in .bt p {
    color: var(--muted);
    margin-top: 6px
}

.brochure-in .btn {
    white-space: nowrap
}

.dl-ic {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 8px
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 38px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.faq-q {
    font-family: 'Poppins';
    font-weight: 600;
    color: #fff;
    background: var(--grad);
    padding: 18px 24px;
    font-size: 1.02rem
}

.faq-a {
    padding: 20px 24px;
    color: var(--ink-soft)
}

.faq-a a {
    color: var(--blue-d);
    font-weight: 600
}

/* inscripcion / form */
.inscribe {
    background: var(--grad-soft)
}

.reg-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.reg-head img {
    height: 56px
}

.reg-cta {
    background: var(--grad);
    color: #fff;
    border-radius: 20px;
    padding: 34px;
    text-align: center;
    max-width: 760px;
    margin: 26px auto 0;
    box-shadow: var(--shadow-lg)
}

.reg-cta h3 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.5rem
}

.contact-card {
    background: rgba(255, 255, 255, .96);
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 22px;
    color: var(--ink)
}

.contact-card .phone {
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--blue-d);
    font-size: 1.2rem
}

.contact-card a {
    color: var(--blue-d)
}

.form-wrap {
    max-width: 860px;
    margin: 44px auto 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    border: 1px solid var(--line)
}

.form-wrap h3 {
    font-family: 'Poppins';
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    font-size: 1.24rem;
    margin-bottom: 8px
}

.form-wrap p.sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 20px
}

.jf-frame {
    width: 100%;
    border: none;
    min-height: 650px
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    text-align: center
}

.partners .pt-lbl {
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    font-size: .82rem;
    margin-bottom: 14px
}

.partners img {
    height: 52px;
    margin: 0 auto
}

/* footer */
.footer {
    background: #212a33;
    color: #c4cdd5;
    padding: 56px 0 0
}

.footer-in {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px
}

.footer .logos {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer .logos img {
    height: 42px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    width: max-content
}

.footer h4 {
    font-family: 'Poppins';
    font-weight: 600;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .86rem;
    margin-bottom: 16px
}

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

.footer a:hover {
    color: #fff
}

.footer .contact li {
    margin-bottom: 8px
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #33404b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s
}

.socials a:hover {
    background: var(--blue)
}

.socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.copyright {
    border-top: 1px solid #33404b;
    margin-top: 44px;
    padding: 22px 0;
    text-align: center;
    font-size: .9rem;
    color: #9aa6b0
}

@media screen and (min-width:992px) {
    .brochure-link {
        &.mobile {
            display: none;
        }
    }
}

@media screen and (max-width:992px) {

    .brochure-link {

        &.mobile {
            padding: 15px !important;
            width: 100%;
        }

        &.desktop {
            display: none;
        }
    }

    .footer .logos img {
        width: 64% !important;
        height: auto !important;
        margin: 0 auto;
    }
}

@media(max-width:960px) {

    .pillars,
    .chal-grid,
    .lab {
        grid-template-columns: 1fr 1fr
    }

    .conf,
    .bio,
    .bio.wide,
    .two-cards,
    .results,
    .info,
    .faq-grid,
    .footer-in {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 2.3rem
    }

    .bio .who,
    .speaker-photo {
        order: -1
    }

    .lab {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .nav-links.open {
        display: flex
    }

    .nav-toggle {
        display: block
    }

    .pillars,
    .chal-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 50px 0
    }

    .sec-title {
        font-size: 1.55rem
    }

    .count-in {
        gap: 20px
    }

    .cd-box {
        min-width: 64px
    }

    .cd-box .n {
        font-size: 1.5rem
    }

    .brochure-in {
        padding: 26px
    }

    .price-card .pnum {
        font-size: 2.6rem
    }

    .reg-head {
        gap: 20px
    }

    .irow {
        grid-template-columns: 1fr
    }
}