:root {
    --brand: #6CBC06;
    --brand-600: #5ea806;
    --brand-50: #f1f9e4;
    --brand-100: #e3f3c9;
    --ink: #0f1115;
    --ink-2: #1a1d24;
    --muted: #a2a2a2;
    --line: #ececec;
    --bg: #fbfaf7;
    /* soft beige white */
    --surface: #ffffff;
    --beige: #f5f1ea;
    --amber: #f6a724;
    --indigo: #6366f1;
    --rose: #f43f5e;
    --shadow-lg: 0 30px 60px -20px rgba(15, 17, 21, .18), 0 8px 24px -12px rgba(15, 17, 21, .10);
    --shadow-md: 0 12px 30px -12px rgba(15, 17, 21, .12);
    --shadow-sm: 0 2px 6px rgba(15, 17, 21, .06);
    --radius: 18px;
     --at-green: #5BA71B;
    --at-green-dark: #4A9216;
    --at-green-light: #e8f5d9;
    --at-green-glow: rgba(91, 167, 27, 0.15);
    --at-dark: #1a1f2e;
    --at-body: #f7f8fa;
    --at-card: #ffffff89;
    --at-text: #333842;
    --at-text-muted: #6c757d;
    --at-border: #e9ecef;
    --at-radius: 12px;
    --at-shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --at-shadow: 0 4px 16px rgba(0, 0, 0, .07);
    --at-shadow-lg: 0 8px 30px rgba(0, 0, 0, .1);
    --at-transition: .25s ease;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

.page-link{
    color: var(--brand);
}

.page-link:hover, .page-item.active .page-link {
    background-color: var(--brand) !important;
    color: #fff;
    border-color: var(--brand);
}

html,
body {
    background: var(--bg);
    color: var(--ink);
    /* font-family: 'Urbanist', sans-serif; */
    
}

h1,
h2,
h3,
h4,
.display-1,
.display-2,
.display-3,
.display-4 {
    
    letter-spacing: -0.02em;
    color: var(--ink);
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

.text-muted2 {
    color: var(--muted) !important;
}

.container-xxl {
    max-width: 1240px;
}

/* overlay nav */
    /* Navbar — transparent over hero, white on scroll */

    .logo img{
        width: 180px;
    }

    .navbar-custom {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      padding: 1rem 0;
      transition: background .3s ease, box-shadow .3s ease, color .3s ease;
      background: transparent;
    }

    .navbar-custom .nav-link,
    .navbar-custom .sign-in,
    .navbar-custom .search-btn {
      color: #fff;
      font-weight: 500;
    }

    .navbar-custom .nav-link:hover {
      color: var(--brand);
    }

    .search-btn {
      background: transparent;
      border: none;
    }

    .nav-link .caret {
      font-size: .7rem;
      margin-left: .2rem;
    }

    /* Scrolled state */
    .navbar-custom.scrolled {
      background: #fff;
      box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
    }

    .navbar-custom.scrolled .nav-link,
    .navbar-custom.scrolled .sign-in,
    .navbar-custom.scrolled .search-btn {
      color: #0d0d0d;
    }

    .navbar-custom.scrolled .nav-link:hover {
      color: var(--brand);
    }

    .navbar-custom.scrolled .logo {
      color: #0d0d0d;
    }
/* end of overlay nav */

    .hero{
        position: relative;
        min-height: 100vh; /* or your existing height */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .hero-slide{
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: opacity 1.5s ease-in-out;
    }

    .hero-slide-1{
        opacity: 1;
        z-index: 1;
    }

    .hero-slide-2{
        opacity: 0;
        z-index: 1;
    }

    .hero-content{
        position: relative;
        z-index: 2;
    }

    .hero .h-display {
      max-width: 760px;
      font-size: 4.5rem;
      color: rgba(255, 255, 255, .85);
    }

    .feature-label {
      color: var(--brand);
      font-weight: 700;
    }

    .feature p {
      color: rgba(255, 255, 255, .7);
      font-size: .95rem;
      margin: 0;
    }


/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    padding: .7rem 1.1rem;
    transition: transform .15s ease, box-shadow .2s ease;
}

.btn-primary{
  background-color: var(--brand);
  border: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn-brand {
    background: var(--brand);
    color: #0c1a00;
    border: 1px solid var(--brand);
    box-shadow: 0 8px 20px -8px rgba(108, 188, 6, .55);
}

.btn-brand:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    color: #0c1a00;
}

.btn-ghost {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: #d8d8d8;
}

.btn-dark2 {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
}

.btn-dark2:hover {
    background: #000;
    color: #fff;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .7rem;
    border: 1px solid var(--line);
    background: var(--muted);
    border-radius: 999px;
    font-size: .82rem;
    color: white;
    box-shadow: var(--shadow-sm);
}

.chip .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 188, 6, .18);
}

/* Nav */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(14px);
    background: rgba(251, 250, 247, .78);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    font-size: 1.25rem;
}

.brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--brand), #b6e85b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0c1a00;
    font-weight: 800;
    box-shadow: inset 0 -6px 14px rgba(0, 0, 0, .08);
}

.nav-links a {
    color: #3a3f4a;
    text-decoration: none;
    font-weight: 500;
    padding: .4rem .8rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, .04);
}

/* Hero */
.hero {
    position: relative;
    padding: 84px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 680px;
    z-index: 0;
    background:
        radial-gradient(600px 300px at 10% 10%, rgba(108, 188, 6, .16), transparent 60%),
        radial-gradient(500px 280px at 90% 0%, rgba(99, 102, 241, .10), transparent 60%);
    filter: blur(2px);
}

.hero .container-xxl {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--brand-600);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .78rem;
}

.h-display {
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    line-height: 1.02;
    font-weight: 800;
}

.h-display .accent {
    background: linear-gradient(120deg, var(--brand) 0%, #9bd84a 60%, var(--brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead-2 {
    color: #4b5563;
    font-size: 1.1rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    align-items: center;
    color: #6b7280;
}

.trust-row .stat strong {
    color: var(--ink);
    font-family: 'Urbanist', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.trust-row .stat span {
    font-size: .85rem;
}

/* Dashboard mockup */
.mockup {
    position: relative;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mock-top {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem .9rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fafafa, #fff);
}

.mock-top .d {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.mock-top .d.r {
    background: #fda4af;
}

.mock-top .d.y {
    background: #fcd34d;
}

.mock-top .d.g {
    background: #86efac;
}

.mock-url {
    margin-left: .6rem;
    font-size: .78rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: .18rem .55rem;
    border-radius: 8px;
}

.dash {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 430px;
}

.dash-side {
    background: #fafaf7;
    border-right: 1px solid var(--line);
    padding: 1rem .8rem;
}

.dash-side .logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 1rem;
}

.dash-side .item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .65rem;
    border-radius: 10px;
    color: #4b5563;
    font-size: .86rem;
    font-weight: 500;
}

.dash-side .item.active {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.dash-side .item i {
    color: var(--brand-600);
}

.dash-main {
    padding: 1rem 1.1rem;
}

.dash-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem;
}

.dash-h h6 {
    margin: 0;
    font-weight: 700;
}

.kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
}

.kpi .card2 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .8rem .9rem;
}

.kpi .card2 .label {
    color: #6b7280;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.kpi .card2 .val {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
}

.kpi .card2 .delta {
    font-size: .74rem;
    color: var(--brand-600);
    font-weight: 700;
}

.chart {
    margin-top: .9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .9rem;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.bars .bar {
    flex: 1;
    background: linear-gradient(180deg, #cfeb8e, var(--brand));
    border-radius: 8px 8px 4px 4px;
    opacity: .9;
}

.bars .bar.alt {
    background: linear-gradient(180deg, #e5e7eb, #cbd5e1);
}

.legend {
    display: flex;
    gap: 1rem;
    font-size: .75rem;
    color: #6b7280;
    margin-top: .5rem;
}

.legend .sw {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
    margin-right: .3rem;
    vertical-align: middle;
}

/* Floating cards around mockup */
.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .7rem .85rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    animation: floaty 6s ease-in-out infinite;
}

.float-card .ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.float-card.green .ico {
    background: var(--brand-50);
    color: var(--brand-600);
}

.float-card.indigo .ico {
    background: #eef0ff;
    color: var(--indigo);
}

.float-card.amber .ico {
    background: #fff4dd;
    color: var(--amber);
}

.float-card.rose .ico {
    background: #ffe4e6;
    color: var(--rose);
}

.float-card small {
    color: #6b7280;
    display: block;
}

.float-card strong {
    color: var(--ink);
}

.fc-1 {
    top: -18px;
    left: -28px;
}

.fc-2 {
    top: 120px;
    right: -32px;
    animation-delay: -2s;
}

.fc-3 {
    bottom: 80px;
    left: -40px;
    animation-delay: -3s;
}

.fc-4 {
    bottom: -18px;
    right: 20px;
    animation-delay: -1s;
}

@keyframes floaty {

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

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

/* Section spacing */
section {
    padding: 84px 0;
}

.section-eyebrow {
    color: var(--brand-600);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .78rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
}

.section-sub {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 680px;
}

/* Logos strip */
.logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem 2rem;
    align-items: center;
    opacity: .85;
}

.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border: 1px dashed #e5e7eb;
    border-radius: 12px;
    color: #4b5563;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    letter-spacing: .02em;
    background: #fff;
}

.logo-pill i {
    margin-right: .5rem;
    color: var(--brand-600);
}

@media (max-width: 991px) {
    .logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stats strip */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.3rem;
    box-shadow: var(--shadow-sm);
}

.stat-card .v {
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.stat-card .v span {
    color: var(--brand-600);
}

.stat-card .l {
    color: #6b7280;
    font-size: .9rem;
}

@media (max-width: 767px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Feature blocks (alternating) */
.feature-block {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-block.rev {
    grid-template-columns: 1fr 1.05fr;
}

.feature-block.rev .fb-visual {
    order: -1;
}

@media (max-width: 991px) {

    .feature-block,
    .feature-block.rev {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-block.rev .fb-visual {
        order: 0;
    }
}

.fb-visual {
    background: linear-gradient(160deg, #fff, #f6f6f1);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.fb-visual::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 188, 6, .18), transparent 60%);
}

.fb-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
}

.fb-check {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: #374151;
    margin-top: .6rem;
}

.fb-check i {
    color: var(--brand-600);
    margin-top: 3px;
}

/* Form visual */
.formcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
}

.formcard .row-field {
    background: #fafaf7;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .55rem .7rem;
    margin-bottom: .55rem;
    font-size: .86rem;
    color: #374151;
}

.formcard .row-field.placeholder {
    color: #9ca3af;
}

.formcard .row-field .lbl {
    display: block;
    font-size: .7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.tag {
    display: inline-block;
    padding: .18rem .55rem;
    border-radius: 999px;
    background: var(--brand-50);
    color: var(--brand-600);
    font-weight: 700;
    font-size: .72rem;
}

/* Ticket visual */
.ticket {
    background: #fff;
    border: 1px dashed #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    position: relative;
}

.ticket .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket .price {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
}

.ticket .qr {
    width: 62px;
    height: 62px;
    background:
        conic-gradient(#111 25%, #fff 0 50%, #111 0 75%, #fff 0) 0 0/14px 14px,
        #111;
    border-radius: 8px;
}

/* QR check-in visual */
.scanner {
    background: #0f1115;
    color: #fff;
    border-radius: 18px;
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
}

.scanner .frame {
    border: 2px solid rgba(108, 188, 6, .6);
    border-radius: 14px;
    height: 170px;
    position: relative;
}

.scanner .laser {
    position: absolute;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    top: 30%;
    animation: scan 2s ease-in-out infinite alternate;
    box-shadow: 0 0 12px var(--brand);
}

@keyframes scan {
    0% {
        top: 10%
    }

    100% {
        top: 90%
    }
}

/* Feature grid */
.fgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width:991px) {
    .fgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    .fgrid {
        grid-template-columns: 1fr;
    }
}

.ficon {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.1rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ficon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #e2e8d6;
}

.ficon .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.ficon h6 {
    font-weight: 700;
    margin: 0 0 .2rem;
}

.ficon p {
    color: #6b7280;
    font-size: .88rem;
    margin: 0;
}

/* Compare */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:767px) {
    .compare {
        grid-template-columns: 1fr;
    }

    .hero {
      min-height: 90vh;
      background-size: cover !important;
      background-position: center center !important;
    }

    .hero .h-display {
      font-size: 3.5rem;
    }

    .cta-final{
        padding: 20px !important;
    }
}

.cmp {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.4rem 1.4rem;
}

.cmp.bad h5 {
    color: #374151;
}

.cmp.good {
    background: linear-gradient(160deg, #fff, #f3faea);
    border-color: #dbe9c2;
    box-shadow: var(--shadow-md);
}

.cmp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmp li {
    display: flex;
    gap: .6rem;
    padding: .55rem 0;
    border-bottom: 1px solid #f1f1ea;
    color: #374151;
}

.cmp li:last-child {
    border-bottom: none;
}

.cmp.bad li i {
    color: #9ca3af;
}

.cmp.good li i {
    color: var(--brand-600);
}

/* How steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width:991px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.2rem;
    position: relative;
}

.step .num {
    position: absolute;
    top: -14px;
    left: 18px;
    background: var(--ink);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step h6 {
    margin: .4rem 0 .3rem;
    font-weight: 700;
}

.step p {
    color: #6b7280;
    margin: 0;
    font-size: .92rem;
}

/* Attendee journey */
.journey {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width:991px) {
    .journey {
        grid-template-columns: repeat(2, 1fr);
    }
}

.j-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}

.j-card .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand-50);
    color: var(--brand-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.j-card h6 {
    margin: .6rem 0 .2rem;
    font-weight: 700;
    font-size: .98rem;
}

.j-card p {
    font-size: .82rem;
    color: #6b7280;
    margin: 0;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width:991px) {
    .pricing {
        grid-template-columns: 1fr;
    }
}

.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
}

.plan.featured {
    background: linear-gradient(180deg, #0f1115, #1a1d24);
    color: #fff;
    border: 1px solid #1d2128;
    box-shadow: 0 30px 60px -20px rgba(15, 17, 21, .45);
    transform: translateY(-6px);
    position: relative;
}

.plan.featured .price,
.plan.featured h4 {
    color: #fff;
}

.plan.featured .feat li {
    color: #d1d5db;
    border-color: rgba(255, 255, 255, .08);
}

.plan.featured .pill {
    position: absolute;
    top: -12px;
    right: 18px;
    background: var(--brand);
    color: #0c1a00;
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
}

.plan h4 {
    font-weight: 800;
    margin: 0 0 .2rem;
}

.plan .price {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin: .5rem 0 .2rem;
}

.plan .price small {
    font-size: .95rem;
    color: #6b7280;
    font-weight: 600;
}

.plan .desc {
    color: #6b7280;
    font-size: .92rem;
    min-height: 42px;
}

.feat {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feat li {
    padding: .55rem 0;
    border-bottom: 1px solid #f1f1ea;
    color: #374151;
    display: flex;
    gap: .55rem;
}

.feat li i {
    color: var(--brand-600);
}

.plan .btn {
    margin-top: auto;
}

/* Testimonials */
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width:991px) {
    .tgrid {
        grid-template-columns: 1fr;
    }
}

.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tcard .quote {
    font-size: 1.04rem;
    color: #1f2937;
    line-height: 1.55;
}

.tcard .who {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.tcard .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c7e891, var(--brand));
    color: #0c1a00;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Urbanist', sans-serif;
}

.tcard .name {
    font-weight: 700;
}

.tcard .role {
    color: #6b7280;
    font-size: .85rem;
}

.tcard .stars {
    color: #f6a724;
    font-size: .9rem;
}

/* Final CTA */
.cta-final {
    background:
        radial-gradient(700px 320px at 20% 20%, rgba(108, 188, 6, .20), transparent 60%),
        radial-gradient(600px 320px at 90% 80%, rgba(99, 102, 241, .14), transparent 60%),
        #0f1115;
    border-radius: 28px;
    color: #fff;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.cta-final h2 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.cta-final p {
    color: #cbd0d8;
    max-width: 640px;
}

/* Footer */
footer {
    padding: 72px 0 28px;
    border-top: 1px solid var(--line);
    background: #fff;
}

footer h6 {
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
}

footer a {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: .25rem 0;
    font-size: .92rem;
}

footer a:hover {
    color: var(--ink);
}

.copy {
    border-top: 1px solid var(--line);
    margin-top: 36px;
    padding-top: 18px;
    color: #6b7280;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: #374151;
    margin-right: .4rem;
}

.socials a:hover {
    background: var(--brand-50);
    color: var(--brand-600);
    border-color: #dbe9c2;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Misc */
.rule-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 17, 21, .12), transparent);
}

.badge-soft {
    background: var(--brand-50);
    color: var(--brand-600);
    border-radius: 999px;
    padding: .3rem .65rem;
    font-weight: 700;
    font-size: .75rem;
}

/* ---------- Utility ---------- */
.bg-brand {
    background-color: var(--at-green) !important;
}

.text-brand {
    color: var(--at-green) !important;
}

.border-brand {
    border-color: var(--at-green) !important;
}

.bg-brand-light {
    background-color: var(--at-green-light) !important;
}

.section-gap {
    padding: 80px 0;
}

.section-gap-sm {
    padding: 16px 0;
}

.badge-brand {
    background: var(--at-green-light);
    color: var(--at-green-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .65rem;
    padding: 4px 14px;
    border-radius: 20px;
}

.badge-brand-no-bg {
    color: var(--at-green-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .65rem;
    border-radius: 20px;
}

/* ---------- Buttons ---------- */
.btn-brand {
    background: var(--at-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--at-transition);
    box-shadow: 0 2px 8px var(--at-green-glow);
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--at-green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--at-green-glow);
}

.btn-brand-outline {
    background: transparent;
    color: var(--at-green);
    border: 1px solid var(--at-green);
    border-radius: 8px;
    padding: 9px 24px;
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--at-transition);
}

.btn-brand-outline:hover {
    background: var(--at-green);
    color: #fff;
}

.btn-brand-sm {
    padding: 7px 18px;
    font-size: .85rem;
}

/* ---------- Navbar ---------- */
.at-navbar {
    background: #fff;
    border-bottom: 1px solid var(--at-border);
    padding: 12px 0;
    box-shadow: var(--at-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.at-navbar .navbar-brand img {
    height: 36px;
}

.at-navbar .nav-link {
    color: var(--at-text);
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: .95rem;
    transition: color var(--at-transition);
}

.at-navbar .nav-link:hover,
.at-navbar .nav-link.active {
    color: var(--at-green);
}

.at-navbar .nav-link.active {
    font-weight: 600;
}

/* ---------- Hero ---------- */
.at-hero {
    /* background: linear-gradient(145deg, #f0fae4 0%, #fff 50%, #e8f5d9 100%); */
    background: url('../images/at-hero-bg.png') no-repeat center/cover, linear-gradient(145deg, #f0fae4 0%, #fff 50%, #e8f5d9 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.at-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--at-green-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.at-hero h1 {
    font-size: 4.2rem;
    line-height: 1.15;
}

.at-hero h1 span {
    color: var(--at-green);
}

.at-hero p.lead {
    font-size: 1.15rem;
    color: var(--at-text-muted);
    max-width: 520px;
}

/* custom code */
.feature-img {
    width: 100%;
}

.organiser-section {
    background: url('../images/organiser-section-bg.png') no-repeat center/cover;
}

.profile-card {
    background: #f7f7f7;
    border: 1px solid #ddd;
    height: 220px;
    border-radius: 18px;
    padding: 22px 24px;
    gap: 16px;
    transition: all var(--at-transition);
}

.profile-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
    line-height: 1.1;
}

.profile-role {
    color: #7d7d7d;
    font-size: .75rem;
    line-height: 1rem;
    margin-top: 10px;
}

.profile-stats {
    color: #555;
    font-size: .875rem;
    line-height: 1.25rem;
    margin-top: 10px;
}

.profile-stats strong {
    font-weight: 700;
    color: #222;
}

.profile-link {
    color: #7FAD56;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: .875rem;
    line-height: 1.25rem;
}

.profile-link:hover {
    color: #0f6f3b;
    font-size: .875rem;
    line-height: 1.25rem;
}

.arrow {
    margin-left: 4px;
    transition: transform .2s ease;
}

.profile-link:hover .arrow {
    transform: translateX(3px);
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--at-shadow);
    border-color: var(--at-green);
}

/* Search box in hero */
.at-search-box {
    background: #fff;
    border-radius: var(--at-radius);
    box-shadow: var(--at-shadow);
    padding: 8px;
    display: flex;
    gap: 8px;
    max-width: 600px;
}

.at-search-box input,
.at-search-box select {
    border: 1px solid var(--at-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    outline: none;
    transition: border-color var(--at-transition);
}

.at-search-box input:focus,
.at-search-box select:focus {
    border-color: var(--at-green);
}

/* ---------- Section Header ---------- */
.at-section-header {
    margin-bottom: 40px;
}


.at-section-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.at-section-header p {
    color: var(--at-text-muted);
    font-size: 1.05rem;
}

.at-section-header .at-line {
    width: 50px;
    height: 4px;
    background: var(--at-green);
    border-radius: 4px;
    margin-top: 12px;
}

/* ---------- Event Card ---------- */
.at-event-card {
    background: var(--at-card);
    border-radius: var(--at-radius);
    overflow: hidden;
    border: 1px solid var(--at-border);
    box-shadow: var(--at-shadow-sm);
    transition: all var(--at-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.at-event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--at-shadow);
    border-color: var(--at-green);
}

.at-event-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.at-event-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.at-event-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.at-event-card .card-img-wrap .badge-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffffd5;
    color: var(--at-dark);
    font-weight: 700;
    font-size: .8rem;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: var(--at-shadow-sm);
    line-height: 1.3;
    text-align: center;
}

.at-event-card .card-img-wrap .badge-date .day {
    font-size: 1.2rem;
    display: block;
}

.at-event-card .card-img-wrap .badge-category {
    position: absolute;
    top: 12px;
    right: 12px;
}

.at-event-card .card-body-inner {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.at-event-card .card-body-inner h5 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.at-event-card .card-body-inner h5 a {
    color: var(--at-dark);
}

.at-event-card .card-body-inner h5 a:hover {
    color: var(--at-green);
}

.at-event-card .event-meta {
    font-size: .85rem;
    color: var(--at-text-muted);
    margin-bottom: 12px;
}

.at-event-card .event-meta i {
    color: var(--at-green);
    margin-right: 4px;
}

.at-event-card .card-footer-inner {
    padding: 14px 20px;
    border-top: 1px solid var(--at-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.at-event-card .card-footer-inner .price {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--at-green);
}

.at-event-card .card-footer-inner .organiser {
    font-size: .8rem;
    color: var(--at-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.at-event-card .card-footer-inner .organiser img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---------- Feature Card ---------- */
.at-feature-card {
    background: #279B65;
    border-radius: var(--at-radius);
    padding: 32px 28px;
    border: 1px solid #ffffff1d;
    text-align: center;
    transition: all var(--at-transition);
    height: 100%;
}

.at-feature-card:hover {
    box-shadow: var(--at-shadow);
    border-color: var(--at-green);
}

.at-feature-card .icon-wrap {
    width: 50px;
    height: 50px;
    background: #7ABF17;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #000;
}

.at-feature-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.at-feature-card p {
    font-size: .9rem;
    color: var(--at-text-muted);
    margin-bottom: 0;
}

/* ---------- Stats Bar ---------- */
.at-stats-bar {
    /* background: var(--at-dark); */
    background: url('../images/at-stats-bar.png') no-repeat center/cover, var(--at-dark);
    border-radius: var(--at-radius);
    padding: 40px;
    color: #fff;
}

.at-stats-bar .stat-item h3 {
    font-size: 2.2rem;
    color: #ffff;
    margin-bottom: 4px;
}

.at-stats-bar .stat-item p {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.at-cta {
    /* background: linear-gradient(135deg, var(--at-green) 0%, #3d8c0e 100%); */
    background: url('../images/at-cta-1.png') no-repeat center/cover, var(--at-green);
    border-radius: var(--at-radius);
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    /* height: 500px; */
    color: #fff;
    text-align: center;
}

.at-cta h2 {
    color: #fff;
    font-size: 2rem;
}

.at-cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 500px;
    margin: 0 auto 24px;
}

.at-cta .btn {
    background: #fff;
    color: #000;
    font-weight: 400;
    border: none;
}

.at-cta .btn:hover {
    background: var(--at-green-light);
    color: var(--at-green-dark);
}

/* ---------- Categories Strip ---------- */
.at-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--at-card);
    border: 1px solid var(--at-border);
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--at-text);
    transition: all var(--at-transition);
    white-space: nowrap;
}

.at-category-chip:hover {
    border-color: var(--at-green);
    color: var(--at-green);
    background: var(--at-green-light);
    transform: translateY(-2px);
}

.at-category-chip i {
    font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.at-footer {
    background: var(--at-dark);
    color: rgba(255, 255, 255, .65);
    padding: 60px 0 0;
}

.at-footer h6 {
    color: #fff;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.at-footer ul {
    list-style: none;
    padding: 0;
}

.at-footer ul li {
    margin-bottom: 10px;
}

.at-footer ul li a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    transition: color var(--at-transition);
}

.at-footer ul li a:hover {
    color: var(--at-green);
}

.at-footer .footer-brand img {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.at-footer .footer-brand p {
    font-size: .9rem;
    max-width: 280px;
}

.at-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: .85rem;
}

.at-footer .social-links a {
    color: rgba(255, 255, 255, .5);
    font-size: 1.1rem;
    margin-left: 16px;
    transition: color var(--at-transition);
}

.at-footer .social-links a:hover {
    color: var(--at-green);
}

/* ---------- Breadcrumb ---------- */
.at-breadcrumb {
    background: var(--at-green-light);
    padding: 16px 0;
}

.at-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: .9rem;
}

.at-breadcrumb .breadcrumb-item a {
    color: var(--at-green);
}

.at-breadcrumb .breadcrumb-item.active {
    color: var(--at-text-muted);
}

/* ---------- Filter Sidebar ---------- */
.at-filter-card {
    background: var(--at-card);
    border: 1px solid var(--at-border);
    border-radius: var(--at-radius);
    padding: 24px;
}

.at-filter-card h6 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
    color: var(--at-dark);
}

.at-filter-card .form-check {
    margin-bottom: 8px;
}

.at-filter-card .form-check-input:checked {
    background-color: var(--at-green);
    border-color: var(--at-green);
}

/* ---------- Single Event Page ---------- */
.at-event-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.at-event-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .1) 100%);
}

.at-event-hero .hero-content {
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 2;
    padding: 40px 0;
    color: #fff;
    width: 100%;
}

.info-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.info-section-inner-image{
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center center;
    border: 1px solid lightgrey;
    border-radius: 8px;
}

.at-event-hero .hero-content h1 {
    color: #fff;
    font-size: 2.5rem;
}

.at-detail-card {
    background: var(--at-card);
    border: 1px solid var(--at-border);
    border-radius: var(--at-radius);
    padding: 24px;
    box-shadow: var(--at-shadow-sm);
}

.at-detail-card h5 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--at-border);
}

.at-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.at-info-row .icon {
    width: 40px;
    height: 40px;
    background: var(--at-green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--at-green);
    flex-shrink: 0;
}

.at-info-row .details strong {
    display: block;
    font-size: .9rem;
    color: var(--at-dark);
}

.at-info-row .details span {
    font-size: .85rem;
    color: var(--at-text-muted);
}

/* Ticket box */
.at-ticket-card {
    background: var(--at-card);
    border: 2px solid var(--at-green);
    border-radius: var(--at-radius);
    overflow: hidden;
}

.at-ticket-card .ticket-header {
    background: var(--at-green);
    color: #fff;
    padding: 16px 24px;
    font-weight: 700;
}

.at-ticket-card .ticket-body {
    padding: 24px;
}

.at-ticket-card .ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--at-border);
}

.at-ticket-card .ticket-option:last-child {
    border-bottom: none;
}

.at-ticket-card .ticket-option .price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--at-dark);
}

.at-ticket-card .ticket-option select {
    width: 70px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid var(--at-border);
}

/* Speaker Card */
.at-speaker-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--at-card);
    border: 1px solid var(--at-border);
    border-radius: var(--at-radius);
    transition: all var(--at-transition);
}

.at-speaker-card:hover {
    box-shadow: var(--at-shadow);
    border-color: var(--at-green);
}

.at-speaker-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--at-green-light);
    margin-bottom: 14px;
}

.at-speaker-card h6 {
    margin-bottom: 4px;
    font-size: .95rem;
}

.at-speaker-card p {
    font-size: .8rem;
    color: var(--at-text-muted);
    margin-bottom: 0;
}

/* Gallery */
.at-gallery-item {
    border-radius: var(--at-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.at-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.at-gallery-item:hover img {
    transform: scale(1.08);
}

.at-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .3s ease;
}

.at-gallery-item:hover::after {
    background: rgba(0, 0, 0, .15);
}



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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
}

.brand-dot {
    color: var(--primary);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--foreground);
}

.nav-actions {
    display: none;
    gap: 0.5rem;
}

@media (min-width: 768px) {

    .nav-links,
    .nav-actions {
        display: flex;
    }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 40px;
    padding: 0 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--at-body);
    color: var(--brand);
    border: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-bold);
}

.btn-ghost:hover {
    background: var(--muted);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    height: 48px;
    padding: 0 1.5rem;
    font-size: 0.95rem;
}

/* ============ PAGE HERO ============ */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background:
        radial-gradient(900px 400px at 80% 0%, hsl(152 70% 92%) 0%, transparent 60%),
        radial-gradient(700px 300px at 0% 100%, hsl(84 80% 92%) 0%, transparent 70%),
        var(--background);
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.page-hero h1 {
    margin-top: 1.25rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    max-width: 18ch;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.page-hero .lede {
    margin-top: 1.25rem;
    max-width: 60ch;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* ============ SECTIONS ============ */
section {
    padding: 5rem 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.section-head p {
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
}

/* ============ PRICING ============ */
.price-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

.price-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.price-card.featured {
    background: var(--ink);
    color: var(--ink-foreground);
    border-color: var(--ink);
    position: relative;
    box-shadow: var(--shadow-bold);
}

.price-card.featured h3 {
    color: var(--ink-foreground);
}

.price-card.featured .price-amount {
    color: var(--accent);
}

.price-card.featured .price-features li {
    color: hsl(0 0% 100% / 0.75);
}

.price-card.featured .price-features li::before {
    color: var(--accent);
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--accent);
    color: var(--ink);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.price-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.price-card .price-amount {
    margin-top: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-card .price-amount span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.price-card.featured .price-amount span {
    color: hsl(0 0% 100% / 0.6);
}

.price-card .price-desc {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.price-card.featured .price-desc {
    color: hsl(0 0% 100% / 0.65);
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.price-features li {
    position: relative;
    padding-left: 1.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--foreground);
    border-top: 1px solid var(--border);
}

.price-card.featured .price-features li {
    border-top-color: hsl(0 0% 100% / 0.1);
}

.price-features li:first-child {
    border-top: none;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0.25rem;
    top: 0.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* ============ FAQ ============ */
.faq {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.15s;
}

details[open] {
    border-color: var(--primary);
}

summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.2s;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
}

.contact-form {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.field {
    margin-bottom: 1.25rem;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(152 82% 31% / 0.15);
}

.field textarea {
    resize: vertical;
    min-height: 130px;
}

.field-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
    .field-row {
        grid-template-columns: 1fr;
    }
}

/* ============ CTA BAND ============ */
.cta-band {
    background: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
}

.cta-band h2 {
    color: var(--primary-foreground);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-band p {
    margin-top: 0.75rem;
    color: hsl(0 0% 100% / 0.85);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .btn-primary {
    margin-top: 1.75rem;
    background: var(--ink);
    color: var(--ink-foreground);
}

.cta-band .btn-primary:hover {
    background: hsl(0 0% 0%);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--ink);
    color: var(--ink-foreground);
    padding: 3rem 0 1.5rem;
}

.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer p {
    color: hsl(0 0% 100% / 0.55);
    font-size: 0.85rem;
}

.site-footer a {
    color: hsl(0 0% 100% / 0.7);
    font-size: 0.85rem;
}

.site-footer a:hover {
    color: var(--accent);
}

.foot-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* end of pricing */

/* ---------- Organiser Page ---------- */
.at-organiser-header {
    background: linear-gradient(135deg, var(--at-green-light) 0%, #fff 100%);
    padding: 60px 0;
}

.at-organiser-header .avatar {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--at-shadow);
}

.org-avatar{
    border-radius: 5px ;
}

.at-organiser-header .org-meta {
    font-size: .9rem;
    color: var(--at-text-muted);
}

.at-organiser-header .org-meta i {
    color: var(--at-green);
    margin-right: 4px;
}

.at-tab-nav .nav-link {
    color: var(--at-text-muted);
    font-weight: 500;
    border: none;
    padding: 12px 24px;
    border-bottom: 2px solid transparent;
    transition: all var(--at-transition);
}

.at-tab-nav .nav-link.active,
.at-tab-nav .nav-link:hover {
    color: var(--at-green);
    border-bottom-color: var(--at-green);
    background: transparent;
}

/* ---------- Pagination ---------- */
.at-pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid var(--at-border);
    color: var(--at-text);
    font-weight: 500;
    font-size: .9rem;
    padding: 8px 14px;
}

.at-pagination .page-item.active .page-link {
    background: var(--at-green);
    border-color: var(--at-green);
    color: #fff;
}

.at-pagination .page-link:hover {
    border-color: var(--at-green);
    color: var(--at-green);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .at-hero h1 {
        font-size: 2.4rem;
    }

    .at-hero {
        padding: 60px 0 50px;
    }

    .at-search-box {
        /* flex-wrap: wrap; */
    }

    .at-search-box input,
    .at-search-box select {
        flex: 1 1 100%;
    }

    .section-gap {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .at-hero h1 {
        font-size: 1.9rem;
    }

    .at-event-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .at-stats-bar {
        padding: 24px;
    }

    .at-stats-bar .stat-item h3 {
        font-size: 1.6rem;
    }

    .at-cta {
        padding: 40px 20px;
    }

    .at-cta h2 {
        font-size: 1.5rem;
    }

   .at-event-card .card-body-inner h5{
        font-size: 16px !important;
        line-height: 16px;
        font-weight: 600;
    }

    .at-event-card .card-footer-inner .organiser
    {
        display: none;
    }

    .at-section-header h2{
        font-size: 24px;
    }

    .fb-check{
        font-size: 12px;
    }

    .footer-container{
        display: flex;
        text-align: center;
        flex-direction: column;
        row-gap: 24px;
        align-items: center;
        justify-content: center;
    }

    .profile-card {
        max-height: 250px;
        border-radius: 18px;
        padding: 22px 15px;
        gap: 12px;
        transition: all var(--at-transition);
    }

    .profile-avatar img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
    }

    .profile-name {
        font-size: 16px;
        font-weight: 600;
    }

    .logo img{
        width: 100px;
    }
}
