:root {
    --navy: #082540;
    --navy-2: #0a2b4a;
    --deep: #031321;
    --blue: #1499f2;
    --blue-2: #1f7cff;
    --teal: #28a9b3;
    --cyan: #28c0ff;
    --orange: #e58a10;
    --orange-2: #f59a19;
    --light: #f4f4f4;
    --light-2: #edf1f5;
    --text: #17304d;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(3, 19, 33, 0.16);
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 980px;
}

.section-padding {
    padding: 90px 0;
}

.section-title,
.hero h1,
.event-intro h2,
.pricing-box h2,
.contact h2,
.events-heading h2,
.talk-card h3,
.audience-item h3,
.site-footer h3 {
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    margin: 0 0 30px;
}

.section-title-dark {
    color: var(--navy);
}

.section-eyebrow {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin: 0 0 14px;
}

.section-eyebrow.light {
    color: var(--white);
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.btn-primary {
    background: linear-gradient(135deg, #0d61d8, #113f9c);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, #ef9418, #d97a09);
    color: var(--white);
}

.btn-outline {
    border-color: rgba(17, 63, 156, 0.2);
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy);
}

.btn.small {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 14px;
}

.btn.full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(8, 37, 64, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.brand img {
    width: 210px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    font-weight: 600;
    color: var(--navy);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 12px 22px;
    border-radius: 999px;
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(8, 37, 64, 0.08);
    border-radius: 14px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #eef1f4;
}

.hero-pdf {
    padding: 0;
}

.hero-pdf-wrap {
    width: 100%;
    max-width: 1523px;
    margin: 0 auto;
}

.hero-pdf-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.event-intro {
    padding: 80px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 181, 255, 0.16), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 147, 0, 0.12), transparent 18%),
        linear-gradient(180deg, #031a2a 0%, #07253d 100%);
    text-align: center;
}

.event-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
}

.event-intro > .container > p {
    max-width: 920px;
    margin: 0 auto 24px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.event-card {
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 34px 30px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    color: #1b1d22;
    box-shadow: var(--shadow);
}

.event-card p {
    margin: 10px 0;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.event-card span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
}

.event-orgs {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,0.92);
}

.audience {
    position: relative;
    background:
        linear-gradient(130deg, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0.02) 35%, transparent 36%),
        linear-gradient(160deg, rgba(255,255,255,0.06), transparent 40%),
        radial-gradient(circle at right bottom, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(120deg, #1788ef 0%, #1d93ff 40%, #0f71dd 100%);
}

.audience-card {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 34px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    box-shadow: var(--shadow);
}

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

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 50px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.icon-circle.orange {
    background: var(--orange);
}

.icon-circle.teal {
    background: var(--teal);
}

.audience-item h3 {
    margin: 0;
    font-size: 24px;
    color: var(--navy);
}

.pricing {
    background: #f6f6f6;
}

.pricing-box {
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px 24px 28px;
    box-shadow: 0 12px 26px rgba(10, 43, 74, 0.06);
}

.pricing-box + .pricing-box {
    margin-top: 28px;
}

.pricing-blue {
    border: 3px solid #2766d4;
}

.pricing-orange {
    border: 3px solid #f09313;
}

.pricing-box h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--navy);
}

.pricing-box p {
    margin: 0 0 18px;
    font-size: clamp(18px, 2vw, 28px);
}

.pricing-note {
    margin: 20px 0 0;
    text-align: center;
    color: #4f5966;
}

.talks {
    background:
        linear-gradient(180deg, rgba(8, 37, 64, 0.7), rgba(8, 37, 64, 0.7)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 18%),
        linear-gradient(90deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.02) 6%, transparent 6%, transparent 16%, rgba(255,255,255,0.05) 16%, rgba(255,255,255,0.01) 22%, transparent 22%, transparent 32%, rgba(255,255,255,0.06) 32%, rgba(255,255,255,0.02) 38%, transparent 38%),
        linear-gradient(180deg, #00111d 0%, #05253c 100%);
}

.talks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.talk-card {
    position: relative;
    overflow: hidden;
    padding: 68px 24px 28px;
    border-radius: 20px;
    min-height: 420px;
    background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.22) 100%);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.talk-card::before {
    content: '';
    position: absolute;
    right: -38px;
    top: 34px;
    width: 84px;
    height: 84px;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.06));
    border-radius: 24px;
    transform: rotate(45deg);
}

.talk-card::after {
    content: '';
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 18px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.talk-ribbon {
    position: absolute;
    left: 0;
    top: 0;
    background: #18b9ff;
    color: #05324f;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    padding: 14px 20px;
    font-size: 18px;
    border-radius: 18px 18px 18px 0;
}

.talk-ribbon::after {
    content: none;
    display: none;
}

.talk-card h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 16px;
}

.talk-meta {
    margin: 0 0 16px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.talk-speaker {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0;
}

.talk-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
}

.talk-company,
.talk-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    background: transparent;
    border: 0;
}

.talk-company {
    color: #8fd8ff;
}

.talk-country {
    color: #ffd28c;
}

.flag {
    font-size: 14px;
    line-height: 1;
    filter: none;
}

.talk-card p:last-child {
    margin: 0;
    color: rgba(255,255,255,0.92);
}

.quote-banner {
    background: var(--orange);
    padding: 100px 0;
    overflow: hidden;
}

.quote-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.quote-dots {
    position: absolute;
    left: calc(50% - 220px);
    top: 80px;
    width: 240px;
    height: 240px;
    background-image: radial-gradient(rgba(8, 37, 64, 0.75) 1px, transparent 1px);
    background-size: 11px 11px;
    opacity: 0.45;
    border-radius: 50%;
}

.quote-bubble {
    position: relative;
    width: min(100%, 620px);
    margin: 0;
    padding: 56px 70px 58px;
    background: var(--white);
    border-radius: 42px;
    text-align: center;
    color: #1c1c1c;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.quote-bubble::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -46px;
    width: 90px;
    height: 90px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.quote-bubble p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.25;
    font-weight: 700;
}

.quote-sign {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Allura', cursive;
    font-size: 34px;
    color: #d76d2e;
    line-height: 0.9;
}

.quote-mark {
    position: absolute;
    font-size: 160px;
    line-height: 1;
    color: #1a87ff;
    font-family: Georgia, serif;
}

.quote-mark.top {
    left: 26px;
    top: 12px;
}

.quote-mark.bottom {
    right: 22px;
    bottom: -18px;
}

.testimonials {
    background: #dfe7ef;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    align-items: start;
}

.testimonial-card {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, #33b3ea 0%, #33b3ea 77%, #ffffff 77%, #ffffff 100%);
    border-radius: 14px;
    padding: 16px 16px 22px;
    min-height: 250px;
    box-shadow: 0 14px 25px rgba(8, 37, 64, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #ffffff 0 22%, transparent 23%), linear-gradient(180deg, transparent 0 54%, #ffffff 55% 76%, transparent 77%), #1a86f7;
    box-shadow: inset 0 -8px 0 rgba(255,255,255,0.18);
}

.mini-quote {
    position: absolute;
    color: #2a9cff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.mini-quote.left {
    left: -38px;
    top: 6px;
}

.mini-quote.right {
    right: -34px;
    bottom: 34px;
}

.testimonial-body {
    text-align: center;
    padding: 10px 8px 72px;
}

.testimonial-body h3,
.testimonial-body .company,
.testimonial-body p {
    color: var(--white);
}

.testimonial-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-body .company {
    margin: 3px 0 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
}

.testimonial-body p {
    font-size: 12px;
    line-height: 1.28;
    margin: 0 auto;
    max-width: 96%;
}

.stars {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    color: #f6b30c;
    font-size: 16px;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.events-gallery {
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
}

.events-heading {
    position: relative;
    text-align: center;
    margin-bottom: 38px;
}

.events-heading h2 {
    margin: -14px 0 20px;
    font-size: clamp(60px, 10vw, 124px);
    color: rgba(24, 30, 40, 0.10);
    line-height: 1;
    font-weight: 900;
}

.script-title {
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: 'Allura', cursive;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}

.gallery-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.gallery-card::before,
.gallery-card::after {
    content: none !important;
    display: none !important;
}

.gallery-card img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    filter: drop-shadow(0 14px 20px rgba(8, 37, 64, 0.18));
}

.contact {
    background: linear-gradient(135deg, #071e33, #0b2e4d 55%, #0f65a8);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.contact h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 54px);
}

.contact-copy p {
    color: rgba(255,255,255,0.88);
    font-size: 18px;
}

.contact-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 16px;
}

.contact-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

.contact-points i {
    color: var(--orange-2);
    font-size: 18px;
}

.contact-form {
    background: rgba(255,255,255,0.97);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(8, 37, 64, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--navy);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1a87ff;
    box-shadow: 0 0 0 4px rgba(26, 135, 255, 0.12);
}

.site-footer {
    background: #f2f2f2;
    color: var(--navy);
}

.footer-grid {
    padding: 60px 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 30px;
}

.footer-brand img {
    width: 240px;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 340px;
    color: #4d5e73;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0a2f4f;
    color: #fff;
}

.site-footer h3 {
    margin: 0 0 18px;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: #4d5e73;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sponsors-wrap {
    padding: 10px 0 34px;
}

.sponsors-strip-html {
    background: #f1f1f1;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(10, 47, 79, 0.04) inset;
}

.sponsors-heading {
    text-align: center;
    color: #7f7f7f;
    letter-spacing: 0.45em;
    font-size: 14px;
    padding: 18px 20px 10px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr 1.45fr 1.05fr 0.95fr;
    align-items: center;
    gap: 26px;
    padding: 0 54px 34px;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}

.biu-box {
    width: 154px;
    height: 105px;
    background: #0b2f63;
    position: relative;
    color: #fff;
    padding: 18px 16px 14px;
    font-weight: 700;
    line-height: 0.9;
}

.biu-main {
    font-size: 35px;
    letter-spacing: -0.06em;
    text-transform: lowercase;
}

.biu-plus {
    position: absolute;
    top: 22px;
    right: 58px;
    width: 16px;
    height: 16px;
}

.biu-plus span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #16b9da;
}

.biu-plus span:nth-child(1) { top: 0; left: 5px; }
.biu-plus span:nth-child(2) { top: 5px; left: 0; }
.biu-plus span:nth-child(3) { top: 5px; left: 10px; }
.biu-plus span:nth-child(4) { top: 10px; left: 5px; }

.biu-sub {
    position: absolute;
    right: 12px;
    top: 34px;
    font-size: 8px;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-align: left;
}

.biu-bottom {
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-size: 23px;
    letter-spacing: -0.03em;
}

.sponsor-fim {
    flex-direction: column;
    gap: 6px;
}

.fim-shield {
    width: 54px;
    height: 62px;
    border: 4px solid #0d3d78;
    border-radius: 10px 10px 18px 18px;
    position: relative;
    background: #fff;
}

.fim-top {
    position: absolute;
    left: 6px;
    top: 8px;
    width: 28px;
    height: 4px;
    background: #0d3d78;
    border-radius: 99px;
}

.fim-flag {
    position: absolute;
    right: 8px;
    top: 12px;
    width: 10px;
    height: 16px;
    background: linear-gradient(180deg, #ff5656 0%, #ff5656 45%, #ffffff 45%, #ffffff 100%);
    border-radius: 1px;
}

.fim-text {
    color: #0d3d78;
    font-size: 16px;
    line-height: 0.95;
    text-align: center;
    font-weight: 700;
}

.sponsor-westin {
    flex-direction: column;
    color: #666;
    line-height: 0.9;
}

.westin-line {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.02em;
}

.westin-main {
    font-size: 28px;
    font-weight: 600;
}

.camino-main {
    font-size: 36px;
    font-weight: 600;
}

.westin-sub {
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 0.32em;
}

.sponsor-cxbs,
.sponsor-cxsummit {
    flex-direction: column;
    gap: 4px;
}

.cx-mark {
    line-height: 0.8;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.cx-c,
.cx-x {
    display: inline-block;
}

.cx-c {
    color: #1db0e6;
}

.cx-x {
    color: #de8615;
    margin-left: -0.12em;
}

.cx-mark-small .cx-c,
.cx-mark-small .cx-x {
    font-size: 84px;
}

.cx-mark-large .cx-c,
.cx-mark-large .cx-x {
    font-size: 96px;
}

.cxbs-text {
    margin-top: -8px;
    text-align: center;
    font-weight: 800;
    line-height: 0.95;
    font-size: 18px;
}

.cxbs-text span:first-child {
    color: #de8615;
}

.cxbs-text span:last-child {
    color: #1db0e6;
}

.cxsummit-word {
    margin-top: -8px;
    color: #1b9dd4;
    font-size: 32px;
    line-height: 0.9;
    letter-spacing: 0.03em;
}

.cxsummit-year {
    color: #7e7e7e;
    font-size: 28px;
    line-height: 0.9;
    letter-spacing: 0.34em;
    padding-left: 0.34em;
}

.sponsors-strip-html::after {
    content: '';
    display: block;
    height: 40px;
    background: #183864;
    border-radius: 0 0 28px 28px;
}

@media (max-width: 1100px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 18px;
        padding: 0 28px 30px;
    }

    .sponsor-westin {
        grid-column: span 1;
    }

    .sponsor-cxsummit {
        grid-column: 2 / 4;
    }
}

@media (max-width: 720px) {
    .sponsors-heading {
        letter-spacing: 0.28em;
        font-size: 12px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 26px;
        gap: 18px;
    }

    .sponsor-cxsummit {
        grid-column: auto;
    }

    .sponsor-item {
        min-height: 90px;
    }

    .biu-box {
        transform: scale(0.9);
    }

    .cx-mark-small .cx-c,
    .cx-mark-small .cx-x {
        font-size: 72px;
    }

    .cx-mark-large .cx-c,
    .cx-mark-large .cx-x {
        font-size: 82px;
    }

    .westin-main {
        font-size: 24px;
    }

    .camino-main {
        font-size: 30px;
    }
}

.footer-bottom {
    background: #0a2f4f;
    color: #fff;
}

.footer-bottom-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #1ebd5b;
    color: #fff;
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.22);
    font-weight: 700;
}

.whatsapp-float i {
    font-size: 24px;
}

.section-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .talks-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        background: rgba(255,255,255,0.98);
        border-radius: 22px;
        box-shadow: 0 22px 34px rgba(8, 37, 64, 0.16);
        padding: 18px;
        display: grid;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero {
        padding-top: 0;
    }

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


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

    .talks-grid,
    .testimonials-grid,
    .gallery-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .events-heading h2 {
        font-size: clamp(52px, 14vw, 96px);
    }

    .quote-dots {
        left: 20px;
        top: auto;
        bottom: -10px;
    }

    .quote-bubble {
        padding: 46px 28px 54px;
    }

    .quote-mark.top {
        left: 10px;
        top: 6px;
        font-size: 110px;
    }

    .quote-mark.bottom {
        right: 12px;
        bottom: -18px;
        font-size: 110px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .nav-wrap {
        min-height: 76px;
    }

    .brand img {
        width: 170px;
    }

    .event-intro > .container > p,
    .contact-copy p {
        font-size: 16px;
    }

    .event-card {
        padding: 26px 16px;
    }

    .event-card p {
        font-size: 22px;
    }

    .audience-card {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .icon-circle {
        width: 96px;
        height: 96px;
        font-size: 38px;
    }

    .audience-item h3 {
        font-size: 22px;
    }

    .pricing-box {
        padding: 28px 16px 22px;
    }

    .pricing-box h2 {
        font-size: 32px;
    }

    .talk-card {
        min-height: auto;
        padding: 62px 18px 24px;
    }

    .talk-meta {
        padding: 12px;
    }

    .talk-speaker {
        font-size: 18px;
    }

    .talk-company,
    .talk-country {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .talk-ribbon {
        font-size: 16px;
        padding: 12px 16px;
    }

    .quote-banner {
        padding: 72px 0;
    }

    .quote-bubble p {
        font-size: 24px;
    }

    .testimonials {
        padding-top: 70px;
    }

    .events-heading h2 {
        margin-top: -8px;
    }

    .contact-form {
        padding: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
        text-align: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}


/* ===== Patrocinadores con imágenes reales ===== */
.sponsors-grid-images {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 32px;
    padding: 6px 54px 34px;
    justify-items: center;
}

.sponsor-item-image {
    min-height: 160px;
}

.sponsor-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sponsor-logo-biu {
    max-width: 420px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.sponsor-logo-westin {
    max-width: 250px;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .sponsors-grid-images {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 6px 24px 28px;
    }

    .sponsor-item-image {
        min-height: 120px;
    }

    .sponsor-logo-biu {
        max-width: 320px;
    }

    .sponsor-logo-westin {
        max-width: 220px;
    }
}


/* ===== Ajuste final patrocinadores compactos y del mismo tamaño ===== */
.sponsors-grid-images--compact {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 0 32px 18px;
}

.sponsor-item-image--compact {
    width: 148px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-biu--compact,
.sponsor-logo-westin--compact {
    width: 118px;
    max-height: 42px;
    object-fit: contain;
    display: block;
    filter: none;
}

.sponsor-logo-westin--compact {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .sponsors-grid-images--compact {
        grid-template-columns: repeat(2, max-content);
        gap: 16px;
        padding: 0 20px 16px;
    }

    .sponsor-item-image--compact {
        width: 128px;
        min-height: 52px;
    }

    .sponsor-logo-biu--compact,
    .sponsor-logo-westin--compact {
        width: 102px;
        max-height: 38px;
    }
}

@media (max-width: 560px) {
    .sponsors-grid-images--compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* ===== Ajuste final: solo 2 patrocinadores y mismo tamaño visual ===== */
.sponsor-logo-unified {
    width: 106px;
    max-width: 106px;
    max-height: 40px;
    object-fit: contain;
    display: block;
    filter: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .sponsor-logo-unified {
        width: 98px;
        max-width: 98px;
        max-height: 36px;
    }
}
