:root {
    --orange: #f36b21;
    --orange2: #ff9b45;
    --ink: #111;
    --paper: #fff;
    --soft: #f6f5f1;
    --line: #deddd7;
    --muted: #777;
    font-family: Manrope, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Manrope, sans-serif;
}

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


/* ================================
   PRELOADER
================================ */

.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: Rajdhani, sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -2px;
}

.preloader-logo span {
    color: var(--orange);
}

.loader-line {
    width: 170px;
    height: 2px;
    background: #eee;
    margin-top: 20px;
    overflow: hidden;
}

.loader-line i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--orange);
    animation: load 1.4s ease forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}


/* ================================
   HEADER / NAVIGATION
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    transition: 0.3s;
}

.header-inner {
    max-width: 1440px;
    margin: auto;
    min-height: 78px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    width: 210px;
}

.brand-logo {
    display: block;
    width: 185px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.brand-city {
    grid-row: span 2;
    color: var(--orange);
    font-size: 23px;
    letter-spacing: -6px;
    align-self: center;
}

.brand-name {
    font-family: Rajdhani, sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -1px;
}

.brand-name span {
    color: var(--orange);
}

.brand small {
    grid-column: 2;
    font-size: 6px;
    letter-spacing: 1px;
    color: #777;
    margin-top: 5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 600;
}

.desktop-nav a {
    white-space: nowrap;
    transition: 0.2s;
}

.desktop-nav a:hover {
    color: var(--orange);
}

.buy-ticket {
    padding: 11px 18px;
    background: var(--orange);
    color: #fff !important;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
    display: block;
    margin: 4px;
}

.mobile-menu {
    display: none;
}


/* ================================
   HERO
================================ */

.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image: url("../assets/images/urbanova-hero.png");
    background-repeat: no-repeat;

    /* FULL WIDTH BACKGROUND */
    background-size: cover;
    background-position: center center;

    background-color: #111;

    animation: heroIn 1.8s ease both;
}

.hero-wash {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.9) 25%,
            rgba(255, 255, 255, 0.18) 54%,
            rgba(255, 255, 255, 0) 78%
        ),
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.95) 0%,
            transparent 30%,
            transparent 80%,
            rgba(255, 255, 255, 0.3)
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(20, 20, 20, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.045) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
    pointer-events: none;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 640px;
    padding-left: 4vw;
    padding-top: 50px;
}

.eyebrow,
.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 16px 0 12px;
    font-weight: 800;
}

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

.hero h2 {
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.05;
    margin: 0 0 20px;
    font-weight: 600;
}

.hero p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.7;
    color: #111111;
    font-weight: 1000;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.hero-meta strong,
.hero-meta span {
    display: block;
    font-size: 32px;
}

.hero-meta strong {
    color: var(--orange);
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: var(--orange);
    color: #fff;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.primary-btn b {
    font-size: 18px;
}

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 30px;
    z-index: 3;
    font-size: 10px;
    letter-spacing: 2px;
    color: #555;
}

.hero-scroll span {
    color: var(--orange);
    font-size: 18px;
    margin-left: 7px;
}

@keyframes heroIn {
    from {
        transform: scale(1.04);
        opacity: 0.5;
    }

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


/* ================================
   COMMON SECTION
================================ */

.section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* ================================
   INTRODUCTION
================================ */

.intro-section {
    background: #fff;
}

.intro-layout {
    display: grid;
    grid-template-columns: 12% 1fr;
    gap: 30px;
    padding-top: 60px;
}

.intro-number {
    font-family: Rajdhani, sans-serif;
    color: var(--orange);
    font-size: 32px;
}

.intro-content {
    max-width: 980px;
}

.intro-content .lead {
    font-size: clamp(25px, 3.2vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 50px;
}

.intro-visual {
    height: 280px;
    margin: 0 0 50px;

    background:
        #111 url("../assets/images/urbanova-hero.png")
        center / cover no-repeat;

    position: relative;
    overflow: hidden;
}

.intro-visual:after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.05)
        );
}

.visual-text {
    position: absolute;
    z-index: 2;
    left: 35px;
    top: 35px;

    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -2px;
}

.visual-text span {
    color: var(--orange);
}

.visual-line {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;

    width: 100%;
    height: 1px;

    background: var(--orange);
    box-shadow: 0 0 15px var(--orange);

    animation: scan 4s linear infinite;
}

@keyframes scan {
    to {
        top: 100%;
    }
}

.intro-content p:not(.lead) {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}


/* ================================
   WHY ATTEND
================================ */

.why-section {
    background: #111;
    color: #fff;
}

.why-head {
    padding: 55px 0;
}

.why-head h2,
.focus-heading h2,
.profile-heading h2,
.speaker-top h2,
.stats-heading h2,
.cta-section h2 {
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.82;
    letter-spacing: -4px;
    margin: 0;
    font-weight: 800;
}

.why-head h2 span,
.speaker-top h2 span,
.profile-heading h2 span,
.stats-heading h2 span,
.cta-section h2 span {
    color: var(--orange);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.why-list article {
    padding: 30px 35px 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 200px;
}

.why-list article:nth-child(even) {
    padding-left: 35px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.why-list b {
    font-size: 12px;
    color: var(--orange);
}

.why-list h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

.why-list p {
    font-size: 14px;
    line-height: 1.65;
    color: #aaa;
    margin: 0;
    max-width: 520px;
}


/* ================================
   FOCUS AREAS
================================ */

.focus-section {
    background: #f5f4ef;
}

.dark-label {
    color: #666;
}

.focus-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 55px 0;
}

.focus-heading p {
    max-width: 300px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.focus-grid article {
    min-height: 230px;
    padding: 25px;

    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;

    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.focus-grid article:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--orange);
    transition: 0.4s;
}

.focus-grid article:hover {
    background: #fff;
    transform: translateY(-4px);
}

.focus-grid article:hover:before {
    width: 100%;
}

.focus-grid small {
    color: var(--orange);
    font-weight: 700;
}

.focus-grid h3 {
    font-size: 22px;
    line-height: 1.05;
    margin: 55px 0 10px;
}

.focus-grid p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}


/* ================================
   DELEGATE PROFILE
================================ */

.profile-section {
    background: #fff;
}

.profile-heading,
.speaker-top,
.stats-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 55px 0;
}

.profile-heading p,
.speaker-top p,
.stats-heading p {
    max-width: 300px;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.profile-grid div {
    min-height: 125px;

    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    padding: 20px;

    font-size: 11px;
    color: #999;

    transition: 0.3s;
}

.profile-grid strong {
    display: block;
    color: #111;
    font-size: 15px;
    margin-top: 35px;
}

.profile-grid div:hover {
    background: #111;
    color: var(--orange);
}

.profile-grid div:hover strong {
    color: #fff;
}


/* ================================
   SPEAKERS
================================ */

.speakers-section {
    background: #111;
    color: #fff;
}

.speaker-wheel {
    max-width: 760px;
    height: 560px;

    margin: 10px auto 0;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    position: relative;

    background:
        radial-gradient(
            circle,
            #1c1c1c 0,
            #111 55%,
            #0a0a0a 100%
        );

    overflow: hidden;
}

.speaker-wheel:before,
.speaker-wheel:after {
    content: "";
    position: absolute;

    border: 1px solid rgba(243, 107, 33, 0.25);
    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

.speaker-wheel:before {
    width: 58%;
    height: 58%;
}

.speaker-wheel:after {
    width: 82%;
    height: 82%;
}

.wheel-center {
    position: absolute;
    z-index: 5;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 190px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.wheel-center img {
    display: block;
    width: 170px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.wheel-item {
    position: absolute;
    z-index: 3;

    padding: 12px 17px;

    border: 1px solid rgba(243, 107, 33, 0.6);
    border-radius: 25px;

    background: #111;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;

    color: #ddd;

    white-space: nowrap;

    animation: float 4s ease-in-out infinite;
}

.wi1 {
    left: 11%;
    top: 22%;
}

.wi2 {
    right: 10%;
    top: 18%;
    animation-delay: 0.5s;
}

.wi3 {
    right: 0;
    top: 49%;
    animation-delay: 1s;
}

.wi4 {
    right: 16%;
    bottom: 15%;
    animation-delay: 1.5s;
}

.wi5 {
    left: 15%;
    bottom: 12%;
    animation-delay: 2s;
}

.wi6 {
    left: 4%;
    top: 51%;
    animation-delay: 2.5s;
}

.wi7 {
    left: 34%;
    top: 8%;
    animation-delay: 3s;
}




@keyframes float {
    50% {
        transform: translateY(-8px);
    }
}


/* ================================
   STATS
================================ */

.stats-section {
    background: #f5f4ef;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.stats-grid div {
    padding: 25px 20px;
    min-height: 200px;

    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.stats-grid strong {
    display: block;
    font-size: clamp(32px, 3.5vw, 55px);
    line-height: 0.9;
    letter-spacing: -3px;
    white-space: nowrap;
}

.stats-grid span {
    display: block;

    margin-top: 25px;

    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.stats-note {
    font-size: 11px;
    color: #777;
    margin-top: 20px;
}


/* ================================
   SUPPORTED BY
================================ */

.supported-section {
    background: #fff;
}

.support-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    margin-top: 50px;
}

.support-wrap div {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

    border-right: 1px solid #ddd;

    text-align: center;
}

.support-wrap div:last-child {
    border: 0;
}

.support-wrap .support-logo {
    width: 200px;
    height: 70px;
    object-fit: contain;
}
/* B2B */
.support-wrap div:nth-child(1) .support-logo {
    width: 230px;
    height: 70px;
}

/* RCMME */
.support-wrap div:nth-child(2) .support-logo {
    width: 230px;
    height: 70px;
}

/* ACE */
.support-wrap div:nth-child(3) .support-logo {
    width: 230px;
    height: 70px;
}

.support-wrap b {
    color: var(--orange);
    font-size: 12px;
    margin-left: 0;
}


/* ================================
   FORWARD MESSAGE
================================ */

.forward-line {
    font-size: clamp(40px, 6vw, 82px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 90px 0 0;
}

.forward-line span {
    color: var(--orange);
}


/* ================================
   CTA
================================ */

.cta-section {
    position: relative;
    min-height: 620px;

    color: #fff;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.cta-image {
    position: absolute;
    inset: 0;

    background:
        url("../assets/images/urbanova-hero.png")
        center / cover no-repeat;

    filter: grayscale(1);
}

.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);
}

.cta-section .section-label {
    color: var(--orange2);
}

.cta-section h2 {
    margin: 50px 0;
}

.dark-btn {
    background: #fff;
    color: #111;
}

.dark-btn:hover {
    background: var(--orange);
    color: #fff;
}


/* ================================
   FOOTER
================================ */

footer {
    background: #111;
    color: #999;

    font-size: 11px;
    padding: 25px 0;
}

.footer-brand {
    font-family: Rajdhani, sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.footer-brand span {
    color: var(--orange);
}


/* ================================
   RESPONSIVE - TABLET
================================ */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 13px;
        font-size: 10px;
    }

    .header-inner {
        padding: 0 18px;
    }

    .brand {
        width: 190px;
    }

    .brand-logo {
        width: 170px;
    }

    .brand-name {
        font-size: 24px;
    }
}


/* ================================
   RESPONSIVE - MOBILE / TABLET
================================ */

@media (max-width: 991px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        z-index: 999;

        top: 78px;
        left: 0;
        right: 0;

        background: #fff;

        border-top: 1px solid #eee;

        padding: 20px;

        display: flex;
        flex-direction: column;
        gap: 0;

        transform: translateY(-120%);
        transition: 0.4s;
    }

    .mobile-menu.open {
        transform: none;
    }

    .mobile-menu a {
        padding: 15px 0;

        border-bottom: 1px solid #eee;

        font-weight: 600;
        font-size: 13px;
    }

    .mobile-buy {
        color: #fff !important;
        background: var(--orange);

        padding: 13px 15px !important;

        text-align: center;

        margin-top: 12px;

        border: 0 !important;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-wash {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.98),
                rgba(255, 255, 255, 0.65) 43%,
                rgba(255, 255, 255, 0.1) 78%
            ),
            linear-gradient(
                0deg,
                rgba(255, 255, 255, 0.92),
                transparent 40%
            );
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .intro-number {
        display: none;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-list article:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

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

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

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

    .stats-grid div:last-child {
        grid-column: span 2;
    }

    .support-wrap {
        grid-template-columns: 1fr;
    }

    .support-wrap div {
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }
}


/* ================================
   RESPONSIVE - MOBILE
================================ */

@media (max-width: 575px) {

    .header-inner {
        min-height: 68px;
    }

    .mobile-menu {
        top: 68px;
    }

    .brand {
        width: 175px;
    }

    .brand-logo {
        width: 160px;
        max-height: 44px;
    }

    .hero {
        min-height: 700px;
    }

    /*
        IMPORTANT:
        Keep the same image as the desktop hero.
        Cover makes it fill the complete mobile hero.
    */

    .hero-image {
        background-size: cover;
        background-position: center center;
    }

    .hero-wash {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.78) 30%,
                rgba(255, 255, 255, 0.08) 62%,
                rgba(255, 255, 255, 0.72) 100%
            );
    }

   .hero-copy {
    max-width: 100%;
    padding-top: 65px;
}

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
    }

  .hero-meta {
    flex-direction: column;
    gap: 6px;
}

    .hero-scroll {
        display: none;
    }

    .section-pad {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .intro-visual {
        height: 230px;
    }

    .visual-text {
        font-size: 29px;
    }

    .why-head h2,
    .focus-heading h2,
    .profile-heading h2,
    .speaker-top h2,
    .stats-heading h2,
    .cta-section h2 {
        font-size: 53px;
        letter-spacing: -2px;
    }

    .why-list article {
        padding: 25px 0 !important;
    }

    .focus-heading,
    .profile-heading,
    .speaker-top,
    .stats-heading {
        display: block;
    }

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

    .focus-grid h3 {
        margin-top: 40px;
    }

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

    .speaker-wheel {
        height: 390px;
    }

    .wheel-item {
        font-size: 8px;
    }
    .wheel-center {
    width: px;
    height: 80px;
}

.wheel-center img {
    width: 85px;
}

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

    .stats-grid div:last-child {
        grid-column: auto;
    }

    .forward-line {
        font-size: 45px;
    }

    .cta-section {
        min-height: 560px;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start !important;
    }
}


/* ================================
   SCROLL REVEAL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}


/* ================================
   SCROLLED HEADER
================================ */

.site-header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.registration-hero {
    padding: 70px 0 50px;
    background: #fff;
}

.registration-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
}

.registration-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-top: 60px;
}

.registration-hero h1 {
    font-size: 55px;
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0;
    font-weight: 800;
}

.registration-hero h1 span {
    color: var(--orange);
    display: block;
}

.registration-hero-content p {
    max-width: 650px;
    margin-top: 35px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.registration-hero-meta {
    border-left: 1px solid #ddd;
    padding-left: 35px;
}

.registration-hero-meta div {
    margin-bottom: 30px;
}

.registration-hero-meta small {
    display: block;
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.registration-hero-meta strong {
    font-size: 20px;
}

.registration-visual {
    padding-bottom: 100px;
}


.registration-main {
    background: #f5f4ef;
    padding: 100px 0;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.delegate-types h2,
.registration-form-wrap h2 {
    font-size:30px;
    line-height: 0.95;
    letter-spacing: -1.5px;
    margin: 25px 0 35px;
}
.delegate-types h2 span,
.registration-form-wrap h2 span {
    color: var(--orange);
    display: block;
}

.delegate-list {
    border-top: 1px solid #ccc;
}

.delegate-item {
    display: flex;
    align-items: center;
    gap: 25px;
    min-height: 70px;
    border-bottom: 1px solid #ccc;
}

.delegate-item span {
    color: var(--orange);
    font-family: Rajdhani, sans-serif;
    font-size: 18px;
}

.delegate-item strong {
    font-size: 15px;
    font-weight: 600;
}
.registration-form-wrap {
    background: #fff;
    padding: 45px;
    border: 1px solid #ddd;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #555;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 12px 0;
    outline: none;
    font-family: Manrope, sans-serif;
    font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--orange);
}

.registration-btn {
    width: 100%;
    border: 0;
    background: var(--orange);
    color: #fff;
    padding: 17px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.registration-btn span {
    font-size: 20px;
}

.registration-closing {
    padding: 20px 0 30px 15px;
    background: #111;
    color: #fff;
}

.registration-closing h2 {
    font-size:45px;
    line-height: 0.85;
    letter-spacing: -5px;
    margin: 15px 0 0 15px;
    font-weight: 800;
}

.registration-closing h2 span {
    color: var(--orange);
    display: block;
}

@media (max-width: 991px) {

    .registration-hero {
    padding: 80px 0 45px;
}

    .registration-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

   .registration-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
}

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .registration-image {
        height: 300px;
    }

    .registration-form-wrap {
        padding: 30px;
    }
}

.delegate-types {
    padding-left: 20px;
}

.registration-hero {
    padding-left: 20px;
}