:root {
    --navy: #061b2b;
    --navy-2: #092b40;
    --cyan: #20d8e8;
    --cyan-dark: #00a9c4;
    --white: #ffffff;
    --off-white: #f4f9fb;
    --text: #0b2538;
    --muted: #71818c;
    --line: rgba(6, 27, 43, 0.13);

    --display: "Manrope", sans-serif;
    --body: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--text);
    font-family: var(--body);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(6, 27, 43, 0.08);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
}

/* NAVIGATION */
.nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
    margin-right: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    color: var(--navy, #061b2b);
    text-decoration: none;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--cyan, #00c4d6);
    transition: 0.25s;
}

.nav a:hover::after {
    width: 100%;
}

.header-button-mobile {
    display: none;
}

/* HEADER BUTTON */
.header-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    background: var(--navy, #061b2b);
    color: white;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.header-button span {
    color: var(--cyan, #00c4d6);
    font-size: 17px;
}

/* MOBILE MENU BUTTON */
.menu-button {
    display: none;
    border: 0;
    background: none;
    margin-left: 15px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-button i {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy, #061b2b);
    margin: 5px;
    transition: 0.25s ease;
}

.menu-button.active i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active i:nth-child(2) {
    opacity: 0;
}

.menu-button.active i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .header {
        padding: 0 20px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(6, 27, 43, 0.08);
        transition: height 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav a {
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(6, 27, 43, 0.06);
    }

    .nav a::after {
        display: none;
    }

    .header-button-mobile {
        display: block;
        margin: 15px 20px;
        padding: 12px 20px;
        background: var(--navy, #061b2b);
        color: #fff !important;
        border-radius: 30px;
        text-align: center;
        width: auto;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }
}





/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background: var(--navy);

    color: white;
}


/* BACKGROUND IMAGE */

.hero-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 27, 43, 0.98) 0%,
            rgba(6, 27, 43, 0.86) 42%,
            rgba(6, 27, 43, 0.22) 100%
        ),
        url("./../img/home/banner-1.jpg");

    background-size: cover;

    background-position: center;

    opacity: 0.95;
}


/* MOLECULAR DECORATION */

.molecule {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(32, 216, 232, 0.25);
}

.molecule-one {
    width: 650px;
    height: 650px;

    right: -150px;
    top: 10%;

    box-shadow:
        0 0 100px rgba(32, 216, 232, 0.08),
        inset 0 0 100px rgba(32, 216, 232, 0.04);
}

.molecule-two {
    width: 400px;
    height: 400px;

    right: 7%;
    top: 23%;

    border-style: dashed;

    animation: rotate 35s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(1330px, 90%);

    margin: 80px auto 0;
}

.hero-label {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;

    color: #9baab3;

    letter-spacing: 0.18em;
}

.hero-label span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow: 0 0 18px var(--cyan);
}


.hero h1 {
    margin-top: 34px;

    max-width: 900px;

    font: 800 clamp(60px, 9.5vw, 65px)/0.95 var(--display);

    /*letter-spacing: -0.085em;*/
    line-height: 1.2;
}

.hero h1 em {
    font-style: normal;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
}

.hero h1 strong {
    color: var(--cyan);
}


.hero-description {
    max-width: 500px;

    margin-top: 38px;

    color: #bdc9cf;

    font-size: 15px;

    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 17px 23px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.primary {
    color: var(--navy);

    background: var(--cyan);

    border-radius: 3px;
}

.secondary {
    border: 1px solid rgba(255,255,255,0.3);

    color: white;

    border-radius: 3px;
}

.button span {
    font-size: 17px;
}


/* HERO DETAILS */

.hero-details {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 55px;
}

.hero-details small {
    display: block;

    font-size: 8px;

    color: #71808a;

    letter-spacing: 0.15em;
}

.hero-details strong {
    display: block;

    margin-top: 5px;

    font: 700 12px var(--display);
}

.vertical-line {
    width: 1px;

    height: 32px;

    background: #38505e;
}


/* HERO SIDE */

.hero-side {
    position: absolute;

    right: 30px;
    top: 42%;

    writing-mode: vertical-rl;

    color: #62737e;

    font-size: 9px;

    line-height: 2.5;

    letter-spacing: 0.2em;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .hero-content {
        width: 90%;
        margin: 100px auto 0;
    }

    .hero h1 {
        font: 800 clamp(38px, 8vw, 52px)/1.05 var(--display);
        margin-top: 24px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .button {
        padding: 15px 20px;
        font-size: 13px;
    }

    .hero-details {
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        margin: 90px auto 0;
    }

    .hero-label {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .hero h1 {
        font: 800 clamp(32px, 9vw, 42px)/1.1 var(--display);
        margin-top: 20px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 26px;
    }

    .button {
        width: 100%;
        padding: 16px 20px;
    }

    .hero-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 35px;
    }

    .vertical-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font: 800 clamp(28px, 10vw, 36px)/1.15 var(--display);
    }

    .hero-details {
        gap: 14px;
    }

    .hero-details strong {
        font-size: 11px;
    }
}


/* =====================================================
   TICKER
===================================================== */

.ticker {
    overflow: hidden;

    white-space: nowrap;

    background: var(--cyan);

    color: var(--navy);

    padding: 15px 0;

    font: 800 11px var(--display);

    letter-spacing: 0.12em;
}

.ticker div {
    animation: ticker 25s linear infinite;
}

.ticker span {
    margin: 0 25px;
}

@keyframes ticker {
    to {
        transform: translateX(-30%);
    }
}


/* =====================================================
   COMMON SECTION
===================================================== */

.section {
    padding: 30px 7vw;
}

.section-number {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.18em;

    color: #71818c;
}

.big-title {
    font: 800 clamp(48px, 6.5vw, 40px)/0.9 var(--display);

    /*letter-spacing: -0.075em;*/
}

.big-title span {
    color: var(--cyan-dark);
}








/* =====================================================
   ABOUT
   ===================================================== */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6vw;
    margin-top: 55px;
    align-items: start;
}

/* --- image + stat cards row --- */
.about-visual {
    display: grid;
    /*grid-template-columns: 1fr 1.15fr;*/
    grid-template-columns: 2fr;
    gap: 14px;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: #eef2fb;
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-card .stat-icon {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.stat-card strong {
    font: 700 26px/1 var(--display);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.stat-card span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.about-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image .image-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-style: italic;
    font-size: 15px;
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* --- text column --- */
.about-text {
    padding-top: 7px;
}

.large-text {
    font: 400 18px/1.4 var(--muted);
    /*letter-spacing: -0.035em;*/
    line-height: 1.8;
}

.about-text > p:not(.large-text) {
    margin-top: 25px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.outline-link {
    display: inline-flex;
    gap: 18px;
    margin-top: 28px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- responsive stacking --- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-visual {
        grid-template-columns: 1fr;
    }
    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }
}



/* STATISTICS */

.statistics {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    margin-top: 80px;

    border-top: 1px solid var(--line);
}

.stat {
    padding-top: 25px;
}

.stat strong {
    display: block;

    font: 800 35px var(--display);

    letter-spacing: -0.06em;
}

.stat span {
    display: block;

    margin-top: 6px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.15em;
}




/* =====================================================
   SCIENTIFIC SESSIONS (ss- prefixed, scoped)
   ===================================================== */

.ss-sessions {
    background: linear-gradient(180deg, #eef5fb 0%, #f7fafd 100%);
    padding: 30px 6vw;
}

.ss-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.ss-label {
    color: #2f6fed;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ss-title {
    font: 800 32px/1.15 var(--display, sans-serif);
    color: #0b2545;
    letter-spacing: -0.02em;
}

.ss-desc {
    margin-top: 10px;
    max-width: 560px;
    color: #5c7185;
    font-size: 14px;
    line-height: 1.7;
}

.ss-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid #2f6fed;
    color: #2f6fed;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    background: #fff;
    transition: 0.2s;
}

.ss-view-all-btn:hover {
    background: #2f6fed;
    color: #fff;
}

/* --- card grid --- */
.ss-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.ss-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20,40,70,0.06);
    display: flex;
    flex-direction: column;
}

.ss-card-top {
    position: relative;
    padding: 22px 18px 26px;
    color: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* IMAGE LAYER ONLY */
.ss-card-top::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(54%) saturate(80%);

    z-index: 0;
}

/* TEXT ABOVE IMAGE */
.ss-card-num,
.ss-card-top h3 {
    position: relative;
    z-index: 1;
}

.ss-card-num {
    font: 800 26px var(--display, sans-serif);
    letter-spacing: -0.02em;
}

.ss-card-top h3 {
    margin-top: 14px;
    font: 700 15px/1.35 var(--display, sans-serif);
    letter-spacing: -0.01em;
}

.ss-card-blue   .ss-card-top { background: url("./../img/home/ms-1.jpg"); filter: brightness(90%) saturate(80%);}
.ss-card-green  .ss-card-top { background: url("./../img/home/ms-2.jpg"); }
.ss-card-purple .ss-card-top { background: url("./../img/home/ms-3.jpg"); }
.ss-card-orange .ss-card-top { background: url("./../img/home/ms-4.jpg"); }
.ss-card-navy   .ss-card-top { background: url("./../img/home/ms-5.jpg"); }

.ss-card-list {
    padding: 18px 18px 22px;
    flex: 1;
}

.ss-card-list {
    padding: 18px 18px 22px;
    flex: 1;
    list-style: none;
}

.ss-card-list li {
    position: relative;
    padding-left: 18px;
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.3;
    color: #46586b;
    /*color: #090c0e;*/
    font-weight:500;
}

.ss-card-list li:first-child {
    margin-top: 0;
}

.ss-card-list li::before,
.ss-card-list li::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.ss-card-list li::before {
    left: 0;
    background: #2b3a4a;
}


/* --- responsive --- */
@media (max-width: 1100px) {
    .ss-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .ss-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .ss-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .ss-cards {
        grid-template-columns: 1fr;
    }
}




/* =====================================================
   FEATURE PROGRAM (fp- prefixed, scoped)
   ===================================================== */

.fp-program {
    min-height: 220px;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(6, 22, 40, 0.82),
            rgba(6, 22, 40, 0.55)
        ),
        url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=2000&q=80")
        center/cover;
}

.fp-overlay {
    padding: 4.5vw 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    flex-wrap: wrap;
    color: #fff;
}

/* --- left content --- */
.fp-content {
    max-width: 380px;
}

.fp-label {
    display: block;
    color: #7fd4ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.fp-title {
    margin-top: 10px;
    font: 800 26px/1.15 var(--display, sans-serif);
    letter-spacing: -0.02em;
}

.fp-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #c7d6e3;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 11px 22px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.2s;
}

.fp-btn:hover {
    background: #fff;
    color: #0b2b45;
}

/* --- right cards --- */
.fp-cards {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fp-card {
    width: 118px;
    background: rgba(20, 55, 90, 0.65);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    backdrop-filter: blur(3px);
}

.fp-icon {
    width: 26px;
    height: 26px;
    color: #fff;
}

.fp-card span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #eaf2f9;
}

/* --- responsive --- */
@media (max-width: 1000px) {
    .fp-overlay {
        flex-direction: column;
        align-items: flex-start;
    }
    .fp-cards {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .fp-card {
        width: calc(50% - 7px);
    }
    .fp-title {
        font-size: 22px;
    }
}


/* =====================================================
   SPEAKERS
===================================================== */

.speakers {
    background: white;
}

.section-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.speakers .big-title {
    margin-top: 35px;
}

.speaker-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 55px;
}

.speaker-image {
    height: 390px;

    background-size: cover;

    background-position: center;

    filter: grayscale(0.8);

    transition: 0.5s;

    position: relative;
}

.speaker-card:hover .speaker-image {
    filter: grayscale(0);
    transform: translateY(-5px);
}

.speaker-image span {
    position: absolute;

    top: 15px;
    left: 15px;

    color: white;

    font-size: 9px;
}

.speaker-1 {
    background-image:
        linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1)),
        url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=85");
}

.speaker-2 {
    background-image:
        linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1)),
        url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=700&q=85");
}

.speaker-3 {
    background-image:
        linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1)),
        url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=700&q=85");
}

.speaker-4 {
    background-image:
        linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1)),
        url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=700&q=85");
}

.speaker-info {
    position: relative;

    padding: 17px 0;

    border-bottom: 1px solid var(--line);
}

.speaker-info h3 {
    font: 700 17px var(--display);

    letter-spacing: -0.03em;
}

.speaker-info p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}

.speaker-info b {
    position: absolute;

    right: 0;
    top: 19px;

    color: var(--cyan-dark);
}


/* =====================================================
   DARK SECTIONS
===================================================== */

.dark-section {
    padding: 125px 7vw;

    background: var(--navy);

    color: white;
}

.dark-section .section-number {
    color: #647985;
}


/* =====================================================
   SESSIONS
===================================================== */

.sessions-header {
    display: grid;

    grid-template-columns: 1fr 0.6fr;

    gap: 8vw;

    align-items: end;

    margin-top: 55px;
}

.sessions-header p {
    color: #91a2ad;

    font-size: 14px;

    line-height: 1.8;
}

.session-list {
    margin-top: 60px;

    border-top: 1px solid #29404d;
}

.session {
    display: grid;

    grid-template-columns: 50px 1fr 30px;

    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid #29404d;

    transition: 0.25s;
}

.session:hover {
    padding-left: 15px;

    background: rgba(32,216,232,0.03);
}

.session > span {
    color: #647985;

    font-size: 10px;
}

.session small {
    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 0.16em;
}

.session h3 {
    margin-top: 6px;

    font: 700 19px var(--display);

    letter-spacing: -0.03em;
}

.session p {
    margin-top: 7px;

    color: #71818c;

    font-size: 14px;
}

.session b {
    color: var(--cyan);

    font-size: 19px;
}


/* =====================================================
   SCHEDULE
===================================================== */

.schedule {
    background: #eaf3f6;
}

.schedule-tabs {
    display: flex;

    border: 1px solid var(--line);
}

.schedule-tabs button {
    border: 0;

    background: transparent;

    padding: 12px 18px;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;
}

.schedule-tabs .active {
    background: var(--navy);

    color: white;
}

.schedule-layout {
    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 9vw;

    margin-top: 60px;
}

.day-title span {
    color: var(--cyan-dark);

    font-size: 9px;

    letter-spacing: 0.15em;
}

.day-title h2 {
    margin-top: 15px;

    font: 800 47px/.9 var(--display);

    letter-spacing: -0.06em;
}

.day-title p {
    margin-top: 25px;

    max-width: 280px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

/* =========================
   FAQ ACCORDION
========================= */

.faq {
    border-top: 1px solid var(--text);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}


/* Question */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 15px 0;

    border: 0;

    background: transparent;

    color: var(--text);

    text-align: left;

    cursor: pointer;

    font: 700 20px var(--display);

    letter-spacing: -0.03em;
}


/* Plus / Minus */

.faq-icon {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.faq-question:hover .faq-icon {
    background: var(--navy);
    color: #fff;
}


/* Answer */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.4s ease;
}

.faq-answer p {
    max-width: 750px;

    margin: 0;

    padding: 0 60px 0 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* Active FAQ */

.faq-item.active .faq-answer {
    max-height: 300px;

    opacity: 1;

    padding-bottom: 25px;
}


/* Active icon */

.faq-item.active .faq-icon {
    background: var(--navy);

    color: #fff;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .schedule-layout {
        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 40px;
    }

    .day-title h2 {
        font-size: 42px;
    }

    .faq-question {
        font-size: 17px;

        padding: 20px 0;
    }

    .faq-answer p {
        padding-right: 10px;

        font-size: 11px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;

        font-size: 18px;
    }

}

/* =====================================================
   PRICING
===================================================== */

.pricing-header {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-top: 55px;
}

.pricing-header p {
    max-width: 370px;

    color: #91a2ad;

    font-size: 13px;

    line-height: 1.7;
}

.price-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    margin-top: 55px;

    background: #29404d;
}

.price-card {
    min-height: 420px;

    position: relative;

    padding: 37px 32px;

    background: #092b40;
}

.price-card.popular {
    background: var(--cyan);

    color: var(--navy);
}

.price-card > label {
    position: absolute;

    right: 20px;
    top: 20px;

    background: var(--navy);

    color: white;

    padding: 7px 10px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.1em;
}

.price-card small {
    font-size: 8px;

    letter-spacing: 0.17em;

    color: #8497a2;
}

.popular small {
    color: #285362;
}

.price-card h3 {
    margin-top: 20px;

    font: 800 52px var(--display);

    letter-spacing: -0.07em;
}

.price-card p {
    margin-top: 3px;

    color: #8497a2;

    font-size: 11px;
}

.popular p {
    color: #285362;
}

.price-card ul {
    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid #294653;

    list-style: none;
}

.popular ul {
    border-color: rgba(6,27,43,.2);
}

.price-card li {
    padding: 7px 0;

    font-size: 11px;
}

.price-card li::before {
    content: "✓";

    margin-right: 9px;

    color: var(--cyan);
}

.popular li::before {
    color: var(--navy);
}

.price-card > a {
    position: absolute;

    bottom: 30px;
    left: 32px;

    padding-bottom: 5px;

    border-bottom: 1px solid currentColor;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.14em;
}

.early-bird {
    margin-top: 18px;

    color: #647985;

    font-size: 8px;

    letter-spacing: 0.13em;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery {
    padding-top: 125px;

    background: white;
}

.gallery-heading {
    padding: 0 7vw;
}

.gallery-heading .big-title {
    margin-top: 30px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.1fr .7fr .7fr;

    grid-template-rows: 260px 260px;

    gap: 7px;

    margin-top: 55px;
}

.gallery-item {
    background-size: cover;

    background-position: center;

    filter: saturate(.8);

    transition: .4s;
}

.gallery-item:hover {
    filter: saturate(1.15);

    transform: scale(.995);
}

.gallery-large {
    grid-row: span 2;

    background-image:
        url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1000&q=85");
}

.gallery-two {
    background-image:
        url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=800&q=85");
}

.gallery-three {
    background-image:
        url("https://images.unsplash.com/photo-1532094349884-543bc11b234d?auto=format&fit=crop&w=800&q=85");
}

.gallery-four {
    background-image:
        url("https://images.unsplash.com/photo-1581093458791-9f3c3900df4b?auto=format&fit=crop&w=800&q=85");
}

.gallery-five {
    background-image:
        url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=85");
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding: 25px 7vw;

    background: #b8e6e9;

    color: var(--navy);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;

    margin-top: 55px;
}

.contact-grid > div > p {
    max-width: 450px;

    margin-top: 30px;

    font-size: 18px;

    line-height: 1.7;
}

.contact-details {
    margin-top: 50px;
}

.contact-details div {
    margin-bottom: 20px;
}

.contact-details small {
    display: block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;
}

.contact-details strong {
    display: block;

    margin-top: 5px;

    font-size: 16px;
}


/* FORM */

.contact-form {
    display: grid;

    gap: 20px;
}

.contact-form label {
    font-size: 15px;

    font-weight: 800;

    letter-spacing: .14em;
    
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 12px 0;

    border: 0;

    border-bottom: 1px solid rgba(6,27,43,.45);

    outline: none;

    background: transparent;

    color: var(--navy);

    font-size: 13px;
}

.contact-form textarea {
    resize: vertical;
}

.dark-button {
    width: max-content;

    border: 0;

    background: var(--navy);

    color: white;

    cursor: pointer;

    margin-top: 5px;
}



/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 50px 7vw 25px;
    background: var(--navy);
    color: white;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 45px;
    position: relative;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-brand {
    flex: 1.4;
    min-width: 220px;
}

.footer-logo {
    min-width: auto;
    margin-bottom: 14px;
}

.footer-tagline {
    color: #71818c;
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: .1em;
    margin: 0;
}

.footer-heading {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 16px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.9;
    color: #b7c1c8;
    margin: 0;
}

.footer-col p a {
    color: #b7c1c8;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #b7c1c8;
    text-decoration: none;
    letter-spacing: .02em;
}

.footer-links a:hover {
    color: white;
}

.back-top {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    position: absolute;
    top: 0;
    right: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #29404d;
    color: #71818c;
    font-size: 12px;
    letter-spacing: .12em;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1000px) {

    .nav {
        gap: 16px;
    }

    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speaker-image {
        height: 360px;
    }

    .sessions-header {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 800px) {

    .header {
        height: 72px;
    }

    .nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .header-button {
        margin-left: auto;
    }

    .hero-content {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: clamp(55px, 14vw, 90px);
    }

    .hero-side {
        display: none;
    }

    .about-grid,
    .schedule-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .statistics {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 250px 250px 250px;
    }

    .gallery-large {
        grid-row: span 2;
    }

    .gallery-five {
        grid-column: span 2;
    }

}


@media(max-width: 560px) {

    .section,
    .dark-section,
    .contact {
        padding: 85px 6vw;
    }

    .logo {
        min-width: auto;
    }

    .logo-icon {
        width: 29px;
        height: 29px;
    }

    .logo strong {
        font-size: 13px;
    }

    .logo small {
        font-size: 6px;
    }

    .header-button {
        padding: 11px 14px;

        font-size: 8px;
    }

    .hero {
        min-height: 850px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-details {
        flex-wrap: wrap;

        gap: 16px;
    }

    .vertical-line {
        display: none;
    }

    .big-title {
        font-size: 53px;
    }

    .statistics {
        grid-template-columns: 1fr 1fr;
    }

    .stat strong {
        font-size: 27px;
    }

    .feature-image {
        min-height: 400px;
    }

    .feature-overlay h2 {
        font-size: 43px;
    }

    .section-top {
        align-items: flex-start;

        gap: 20px;

        flex-direction: column;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speaker-image {
        height: 390px;
    }

    .session {
        grid-template-columns: 30px 1fr 20px;

        gap: 12px;
    }

    .session h3 {
        font-size: 16px;
    }

    .schedule-tabs button {
        padding: 10px 12px;
    }

    .timeline-item {
        grid-template-columns: 65px 1fr;

        gap: 10px;
    }

    .timeline-item h3 {
        font-size: 16px;
    }

    .pricing-header {
        display: block;
    }

    .pricing-header p {
        margin-top: 25px;
    }

    .price-card {
        min-height: 400px;
    }

    .gallery {
        padding-top: 85px;
    }

    .gallery-grid {
        display: block;

        margin-top: 40px;
    }

    .gallery-item {
        height: 280px;

        margin-bottom: 5px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}


/* Sticky Stack Cards */
/* ================================
   Sticky Stack Cards
================================ */

.stack__header {
    margin-bottom: clamp(3rem, 6vw, 6rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stack__subtitle {
    font-size: var(--fs-data);
    max-width: 340px;
    opacity: 0.6;
    line-height: 1.7;
}

/* Card wrapper */
#process .stack__card {
    position: sticky;
    top: 80px;

    /* ALL CARDS SAME HEIGHT */
    min-height: 320px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--gap);
    align-items: center;

    padding: 32px;
    margin-bottom: 40px;

    background: var(--base);
    border-radius: 12px;
    border: 1px solid #100e0d14;
    box-shadow: var(--shadow);

    /* Important for stacking */
    z-index: 1;
}

/* Individual sticky positions */
#process .stack__card:nth-of-type(1) {
    top: 80px;
    z-index: 1;
}

#process .stack__card:nth-of-type(2) {
    top: 110px;
    z-index: 2;
    background: #F5F5F0;
}

#process .stack__card:nth-of-type(3) {
    top: 140px;
    z-index: 3;
    background: #eaf3f6;
    color: var(--base);
    box-shadow: var(--shadow-safety);
}

#process .stack__card:nth-of-type(4) {
    top: 170px;
    z-index: 4;
    background: #F0F0EB;
}

/* Hover */
#process .stack__card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--ink);
}

#process .stack__card:nth-of-type(3):hover {
    box-shadow: 12px 12px 0px var(--safety);
}

/* Left / right */
.stack__card-left {
    grid-column: 1;
}

.stack__card-right {
    grid-column: 2;
    width: 100%;
}

/* Number */
.stack__card-step {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(6rem, 14vw, 14rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    opacity: 0.12;
}

/* Title */
.stack__card-title {
    font-size: var(--fs-h2);
    margin-bottom: 1rem;
}

/* Text */
.stack__card-text {
    font-size: var(--fs-data);
    line-height: 1.8;
    opacity: 0.7;
    max-width: 520px;
}

/* Tags */
.stack__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

/* Day schedule */
.day-item {
    display: flex;
    gap: 16px;
    padding: 15px 10px;
    border-top: 1px solid black;
    border-radius: 6px;
    transition: background .2s ease;
}

.day-time {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--green-mid);
    white-space: nowrap;
    width: 86px;
    flex-shrink: 0;
    margin-right: 30px;
}

.day-what {
    font-size: 15.5px;
    color: #333;
    line-height: 1.5;
}

/* Day 3 styling */
.stack__card:nth-of-type(3) .tag {
    border-color: var(--base);
    color: var(--base);
    background: transparent;
}

.stack__card:nth-of-type(3) .tag--filled {
    background: var(--safety);
    border-color: var(--safety);
}


/* ================================
   Responsive
================================ */

@media (max-width: 900px) {

    #process .stack__card {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stack__card-left,
    .stack__card-right {
        grid-column: 1;
    }

    .stack__card-step {
        font-size: clamp(5rem, 20vw, 10rem);
    }

}


@media (max-width: 600px) {

    #process .stack__card {
        padding: 24px;
        top: 70px !important;
        margin-bottom: 25px;
    }

    .day-item {
        gap: 8px;
        padding: 12px 5px;
    }

    .day-time {
        width: 75px;
        margin-right: 10px;
        font-size: 12px;
    }

    .day-what {
        font-size: 14px;
    }

}





.price-section{
	position:relative;
	z-index: 9;
	padding: 55px 7vw;
	background-color: #f5f5f5;
}

/*Price Column*/

.pricing-column{
	position:relative;
	/*margin-bottom:40px;	*/
}

.pricing-column .inner-box{
	position:relative;
	display:block;
	background:#ffffff;
	text-align:center;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	outline:2px solid transparent;
	outline-offset:0px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(244,244,244,1);
	-moz-box-shadow: 0px 0px 15px 0px rgba(244,244,244,1);
	box-shadow: 0px 0px 15px 0px rgba(244,244,244,1);
}

.pricing-column.active .inner-box,
.pricing-column .inner-box:hover{
	outline-color:var(--cyan-dark);
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	-o-box-shadow:none;
	box-shadow:none;
}

.pricing-card-items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.pricing-column .inner-box h5{
	position:relative;
	color:#222222;
	font-size:25px;
	font-weight:600;
	padding:15px 0px;
	border:1px solid #eeeeee;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.pricing-column .price-header{
	position:relative;
	padding:10px 20px 10px;
	line-height:1em;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color:#f4f4f4;
}

.pricing-column .price-header .price{
	position:relative;
	line-height:1em;
}

.pricing-column .price-header .dollar-sign{
    position: relative;
    top: -10px;
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    left: -6px;
    text-transform: uppercase;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.pricing-column .price-header .price sub{
	font-size:12px;
	font-weight:400;
	left:-10px;
	color:#222222;
	text-transform:capitalize;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.pricing-column .price-header .price .total-amount{
	font-size:40px;
	font-weight:600;
	line-height:1em;
	color:#222222;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.pricing-column .price-header .text{
	position:relative;
	color:#848484;
	font-size:16px;
	font-weight:400;
	line-height:1.6em;
	margin-top:10px;
	margin-bottom:0px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.pricing-column .lower-content{
	position:relative;
	padding:5px 0px 30px;	
}

.pricing-column .lower-content .spec-list{
	position:relative;
	padding:0px 0px 20px;
    list-style-type: none;
}

.pricing-column .lower-content .spec-list li{
	line-height:32px;
	padding:5px 15px;
	font-size:15px;
	color:#181818;
	font-weight:400;
	border-bottom:1px solid #eeeeee;
}

.pricing-column .lower-content .join-btn{
	color:#222222;
	font-size:16px;
	font-weight:500;
	padding:10px 44px;
	border:2px solid #f4f4f4;
	text-transform:capitalize;
	display:inline-block;
}

.pricing-column.active .inner-box h2,
.pricing-column .inner-box:hover h2{
	color:var(--cyan-dark);
}

.pricing-column.active .price-header,
.pricing-column .inner-box:hover .price-header{
	background-color:var(--cyan-dark);
}

.pricing-column.active .price-header .dollar-sign,
.pricing-column.active .price-header .price .total-amount,
.pricing-column.active .price-header .price sub,
.pricing-column.active .price-header .text,
.pricing-column .inner-box:hover .price-header .dollar-sign,
.pricing-column .inner-box:hover .price-header .price .total-amount,
.pricing-column .inner-box:hover .price-header .price sub,
.pricing-column .inner-box:hover .price-header .text{
	color:#ffffff;
}

.pricing-column.active .lower-content .join-btn,
.pricing-column .inner-box:hover .lower-content .join-btn{
	background-color:var(--cyan-dark);
	border-color:var(--cyan-dark);
	color:#ffffff;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .pricing-card-items {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .pricing-card-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .pricing-column .inner-box h5 {
        font-size: 20px;
        padding: 12px 0;
    }

    .pricing-column .price-header {
        padding: 10px 15px;
    }

    .pricing-column .price-header .price .total-amount {
        font-size: 32px;
    }

    .pricing-column .lower-content .spec-list li {
        font-size: 14px;
        line-height: 28px;
        padding: 5px 10px;
    }

    .pricing-column .lower-content .join-btn {
        padding: 10px 30px;
        font-size: 15px;
    }
}

/* Small mobile: tighten further */
@media (max-width: 480px) {
    .big-title {
        font-size: 24px;
        margin-top: 20px !important;
    }

    .pricing-column .inner-box h5 {
        font-size: 18px;
    }

    .pricing-column .price-header .price .total-amount {
        font-size: 28px;
    }
}

/* =========================================
   TESTIMONIAL FEATURE
========================================= */

.testimonial-feature {
    position: relative;

    background: #eaf3f6;

    padding: 80px 0 90px;

    overflow: hidden;
}


/* =========================================
   TOP FEATURE AREA
========================================= */

.testimonial-feature-overlay {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    padding: 0 6vw;
}


.testimonial-heading span {
    display: block;

    margin-bottom: 18px;

    color: var(--cyan-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.testimonial-heading h2 {
    margin: 0;

    font: 800 40px/.88 var(--display);

    /*letter-spacing: -0.065em;*/

    text-transform: uppercase;
}


/* Section number */

.testimonial-feature .feature-number {
    font: 800 100px/.8 var(--display);

    letter-spacing: -0.08em;

    opacity: 0.12;

    line-height: 1;
}


/* =========================================
   CAROUSEL
========================================= */

.testimonial-carousel {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 70px;

    /*padding: 0 6vw;*/
}


.carousel-viewport {
    width: 100%;

    overflow: hidden;
}


.carousel-track {
    display: flex;

    gap: 20px;

    transition: transform 0.5s ease;

    will-change: transform;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    flex: 0 0 32%;

    box-sizing: border-box;

    min-height: 270px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--line);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-radius: 15px;
}


.testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================
   QUOTE
========================================= */

.testimonial-quote {
    position: relative;

    padding-left: 35px;

    color: var(--text);

    font: 500 15px/1.65 var(--display);

    /*letter-spacing: -0.02em;*/
}


.testimonial-quote::before {
    content: "\201C";

    position: absolute;

    left: 0;

    top: -12px;

    font: 800 50px/1 var(--display);

    color: var(--cyan-dark);
}


/* =========================================
   PERSON
========================================= */

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 15px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}


.testimonial-avatar {
    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #eaf3f6;
}


.testimonial-name {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: -0.01em;
}


.testimonial-role {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   ARROW BUTTONS
========================================= */

.carousel-btn {
    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--text);

    background: transparent;

    color: var(--text);

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.carousel-btn:hover {
    background: var(--navy);

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .testimonial-heading h2 {
        font-size: 55px;
    }

    .testimonial-card {
        flex: 0 0 80%;
    }

    .testimonial-feature .feature-number {
        font-size: 80px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .testimonial-feature {
        padding: 60px 0;
    }

    .testimonial-feature-overlay {
        padding: 0 25px;

        align-items: flex-start;
    }

    .testimonial-heading h2 {
        font-size: 45px;
    }

    .testimonial-feature .feature-number {
        font-size: 60px;
    }

    .testimonial-carousel {
        gap: 12px;

        margin-top: 45px;

        padding: 0 25px;
    }

    .testimonial-card {
        flex: 0 0 100%;

        min-height: 300px;

        padding: 25px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .carousel-btn {
        flex: 0 0 40px;

        width: 40px;

        height: 40px;

        font-size: 23px;
    }

}

