:root {
    --bg-deep: #f5f3ef;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --gold: #b8934a;
    --gold-light: #d4af6c;
    --gold-dark: #9c7a39;
    --text: #1e1e1e;
    --text-muted: #5a5f66;
    --white: #ffffff;
    --black: #111111;
    --border: #e1dfda;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(184, 147, 74, 0.25);
    --shadow-gold: 0 8px 36px rgba(184, 147, 74, 0.12);
    --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: 'Oswald', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
}
.gold-text { color: var(--gold-dark); }
.gold-underline {
    background: linear-gradient(180deg, transparent 60%, rgba(184, 147, 74, 0.2) 60%);
    padding: 0 4px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
    color: #ffffff;
    box-shadow: 0 6px 28px rgba(184, 147, 74, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(184, 147, 74, 0.5);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(184, 147, 74, 0.06);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 147, 74, 0.15);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s;
}
.header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 800;
}
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.2px;
}
.nav a:hover { color: var(--gold-dark); }
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}
.burger span {
    width: 28px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}
.btn-mobile {
    display: none !important;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background: linear-gradient(160deg, #faf8f5 0%, #f0ede7 40%, #ffffff 100%);
}
.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(184,147,74,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-bg-shape2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,147,74,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,147,74,0.08);
    border: 1px solid rgba(184,147,74,0.3);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(184,147,74,0.7); }
    50% { box-shadow: 0 0 0 12px rgba(184,147,74,0); }
}
.hero-title {
    font-size: clamp(3.6rem, 6vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s 0.1s ease-out both;
}
.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.2s ease-out both;
    max-width: 450px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease-out both;
}
.hero-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    animation: fadeInUp 0.8s 0.35s ease-out both;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hero-card-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-card-item {
    flex: 1;
    min-width: 80px;
}
.hero-card-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 4px;
    font-weight: 600;
}
.hero-card-item .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}
.hero-card-item .value small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}
.countdown {
    display: flex;
    gap: 12px;
    flex-wrap:
    wrap;
}
.countdown-box {
    background: rgba(184,147,74,0.06);
    border: 1px solid rgba(184,147,74,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
    flex: 1;
}
.countdown-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}
.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 4px;
}
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark {
    background: var(--white);
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.topic-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--glass-border);
}
.topic-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}
.topic-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}
.topic-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.timeline {
    position: relative;
    margin-top: 50px;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(184,147,74,0.15);
}
.timeline-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 4px 0;
}
.timeline-desc {
    color: var(--text-muted);
    font-size: 1rem;
}
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.speaker-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--glass-border);
}
.speaker-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0ede7, #e8e4dc);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    border: 3px solid var(--border);
}
.speaker-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 2px;
}
.speaker-card .role {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
}
.form-section {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 48px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #faf8f5;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--black);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,147,74,0.1);
    background: #fff;
}
.form-row {
    gap: 16px;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 16px 0;
}
.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    font-size: 1rem;
    user-select: none;
}
.faq-question .icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
    color: var(--gold);
}
.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer a {
    color: var(--gold-dark);
    text-decoration: none;
}
.map-placeholder {
    width: 100%;
    height: 280px;
    background: #faf8f5;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 30px;
    transition: var(--transition);
}
.map-placeholder:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(184,147,74,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184,147,74,0.5);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.I785457 {
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-top:24px;
    color:var(--text-muted);
    font-size:0.9rem;
}
.I235557 {
    max-width:700px;
    margin-top:32px;
}
.I21345557 {
    display:none;
    text-align:center;
    padding:30px;
    color:var(--gold-dark);
    font-size:1.3rem;
}
.I2355574257 {
    margin-top:40px;
}
.I2114057 {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px 24px;
    box-shadow:0 2px 12px rgba(0,0,0,0.02);
}
.I00573457 {
    font-size:2.2rem;
    margin-bottom:12px;
}
.I2134990545457 {
    font-size:1.2rem;
    color:var(--black);
    margin-bottom:8px;
}
.I325235237857 {
    color:var(--text-muted);
    font-size: 1rem;
}
.I2323523957 {
    font-size:0.7rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--gold-dark);
    font-weight:600;
}
.I232352395757 {
    font-size: 1.3rem;
    color: black;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.I23142138787557 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.P043256857 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.P043256857 p{
    max-width: 1280px;
}
.I4467357 {
    width: 90px;
    height: 90px;
}
.I446735757 {
    width: 120px;
    height: 90px;
    border-radius: 20px;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1440px) {
.hero-title {
    font-size: clamp(2.6rem, 6vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s 0.1s ease-out both;
}
}
@media (max-width: 1024px) {
.container {
    margin-bottom: 20px;
}
.I232352395757 {
    font-size: 1.1rem;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 2.2rem);
}
}
@media (max-width: 900px) {
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 360px;
    height: 100vh;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transition: right 0.5s;
    z-index: 1000;
    border-left: 1px solid var(--border);
}
.btn-mobile {
    display: inline-flex !important;
}
.nav.active {
    right: 0;
}
.nav a {
    font-size: 1.2rem;
    color: var(--text);
}
.burger {
    display: flex;
}
.header .btn {
    display: none;
}
.nav .btn-mobile {
    display: inline-flex !important;
    margin-top: 10px;
}
.hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.hero-bg-shape {
    top: 0;
    right: -40%;
    width: 400px;
    height: 400px;
}
.hero-desc {
    max-width: 100%;
    margin: 0 auto 32px;
}
.hero-buttons {
    justify-content: center;
}
}
@media (max-width: 768px) {
.container {
    padding: 0 20px;
}
.section {
    padding: 60px 0;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 2.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s 0.1s ease-out both;
}
}
@media (max-width: 600px) {
.form-section {
    padding: 28px 20px;
}
}
@media (max-width: 500px) {
.form-row {
    grid-template-columns: 1fr;
}
}
@media (max-width: 400px) {
.cards-grid {
    grid-template-columns: 1fr;
}
}