:root{
    --rotary-blue:#17458f;
    --rotary-gold:#f7a81b;
    --dark:#0f172a;
    --text:#1e293b;
    --muted:#64748b;
    --bg:#f8fafc;
    --white:#ffffff;
    --success:#15803d;
    --danger:#b91c1c;
    --shadow:0 12px 30px rgba(15, 23, 42, 0.10);
}

*{ box-sizing:border-box; }
html,body{
    margin:0;
    padding:0;
    font-family:"Segoe UI", Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
}
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }

.container{
    width:min(1140px, calc(100% - 32px));
    margin:0 auto;
}

.topbar{
    background:linear-gradient(90deg, var(--rotary-blue), #0c2f69);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.navbar{
    background:#fff;
    border-bottom:1px solid #e2e8f0;
    position:sticky;
    top:0;
    z-index:10;
}

.navbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    gap:20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:800;
    color:var(--rotary-blue);
    font-size:22px;
}

.brand-badge{
    width:46px;
    height:46px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%, var(--rotary-gold), #d89212);
    box-shadow:var(--shadow);
    position:relative;
}

.brand-badge::after{
    content:"";
    position:absolute;
    inset:9px;
    border:2px dashed rgba(255,255,255,.9);
    border-radius:50%;
}

.nav-links{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.nav-links a{
    color:var(--text);
    font-weight:600;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 22px;
    border-radius:999px;
    border:none;
    cursor:pointer;
    transition:.2s ease;
    font-weight:700;
    font-size:15px;
}

.btn:hover{ transform:translateY(-1px); }

.btn-primary{
    background:linear-gradient(135deg, var(--rotary-gold), #ffbe43);
    color:#1f2937;
    box-shadow:0 10px 24px rgba(247,168,27,.35);
}

.btn-secondary{
    background:var(--rotary-blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(23,69,143,.25);
}

.hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(247,168,27,.18), transparent 30%),
        radial-gradient(circle at left bottom, rgba(23,69,143,.18), transparent 32%),
        linear-gradient(135deg, #ffffff, #f6f9ff);
    padding:72px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:34px;
    align-items:center;
}

.hero-card{
    background:rgba(255,255,255,.88);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:var(--shadow);
    border-radius:30px;
    padding:34px;
}

.eyebrow{
    display:inline-flex;
    background:rgba(247,168,27,.12);
    color:#9a6700;
    border:1px solid rgba(247,168,27,.25);
    padding:8px 14px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:18px;
    font-size:14px;
}

.hero h1{
    margin:0 0 16px;
    font-size:clamp(34px, 5vw, 58px);
    line-height:1.04;
    color:var(--dark);
}

.hero p.lead{
    margin:0 0 26px;
    color:var(--muted);
    font-size:18px;
    line-height:1.7;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:8px;
}

.hero-point{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:999px;
    padding:10px 14px;
    font-weight:600;
    color:#334155;
}

.info-panel{
    background:linear-gradient(180deg, var(--rotary-blue), #0f3574);
    color:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.info-panel::before{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-60px;
    top:-60px;
}

.info-panel h3{
    margin:0 0 18px;
    font-size:28px;
}

.info-list{
    display:grid;
    gap:14px;
    margin-top:18px;
}

.info-item{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    padding:16px;
}

.info-item strong{
    display:block;
    font-size:14px;
    opacity:.82;
    margin-bottom:4px;
}

.section{
    padding:64px 0;
}

.section-title{
    text-align:center;
    margin-bottom:34px;
}

.section-title h2{
    margin:0 0 10px;
    font-size:36px;
    color:var(--dark);
}

.section-title p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow);
    border:1px solid #eef2f7;
}

.card h3{
    margin-top:0;
    margin-bottom:10px;
    color:var(--rotary-blue);
}

.card p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

.pricing{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    max-width:820px;
    margin:0 auto;
}

.price-box{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f7;
    text-align:center;
    position:relative;
}

.price-box.featured{
    border:2px solid rgba(247,168,27,.45);
    transform:translateY(-4px);
}

.price-tag{
    font-size:42px;
    font-weight:800;
    color:var(--dark);
    margin:12px 0;
}

.price-box .mini{ color:var(--muted); }

.flyer-section{
    padding:64px 0;
    background:linear-gradient(180deg, #fffdf7, #fff8e8);
}

.flyer-wrap{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:28px;
    align-items:center;
}

.flyer-text{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f7;
}

.flyer-text h2{
    margin-top:0;
    margin-bottom:14px;
    font-size:36px;
    color:var(--dark);
}

.flyer-text p{
    color:var(--muted);
    line-height:1.8;
    font-size:17px;
}

.flyer-box{
    background:#fff;
    border-radius:28px;
    padding:18px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f7;
}

.flyer-box img{
    width:100%;
    border-radius:20px;
}

.event-highlight{
    margin-top:18px;
    display:grid;
    gap:12px;
}

.event-highlight .item{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:14px 16px;
    font-weight:600;
    color:#334155;
}

.session-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:26px;
}

.session-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow);
    border:1px solid #eef2f7;
}

.session-card h3{
    margin:0 0 10px;
    color:var(--rotary-blue);
    font-size:24px;
}

.session-meta{
    color:var(--muted);
    margin-bottom:16px;
    line-height:1.7;
}

.session-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.session-btn {
    background: #17458f;
    color: white;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    min-width: 220px;
    transition: 0.2s;
}

.session-btn:hover {
    background: #0f3574;
    transform: scale(1.05);
}

.form-shell{
    max-width:860px;
    margin:0 auto;
    background:#fff;
    border-radius:30px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f7;
    padding:34px;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-row{
    margin-bottom:18px;
}

.form-row label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#1f2937;
}

.form-row input,
.form-row textarea,
.form-row select{
    width:100%;
    padding:15px 16px;
    border-radius:16px;
    border:1px solid #dbe3ee;
    background:#fbfdff;
    font-size:15px;
    outline:none;
    transition:.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus{
    border-color:#8bb1f2;
    box-shadow:0 0 0 4px rgba(23,69,143,.08);
    background:#fff;
}

.summary-box{
    background:linear-gradient(180deg, #f8fbff, #f0f7ff);
    border:1px solid #d9e7fb;
    border-radius:24px;
    padding:24px;
    margin-top:10px;
}

.summary-line{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:10px 0;
    border-bottom:1px dashed #d7e1ef;
}

.summary-line:last-child{ border-bottom:none; }

.summary-total{
    font-size:22px;
    font-weight:800;
    color:var(--dark);
}

.notice{
    background:#fff8e8;
    border:1px solid #f5d88f;
    color:#7c5a00;
    padding:14px 16px;
    border-radius:18px;
    margin:18px 0;
    line-height:1.6;
}

.success-box,
.error-box{
    max-width:800px;
    margin:50px auto;
    background:#fff;
    border-radius:28px;
    box-shadow:var(--shadow);
    padding:36px;
    border:1px solid #edf2f7;
}

.success-box{ border-left:8px solid var(--success); }
.error-box{ border-left:8px solid var(--danger); }

.footer{
    margin-top:50px;
    background:#0f172a;
    color:#cbd5e1;
    padding:34px 0;
}

.footer p{
    margin:0;
    line-height:1.7;
}

.table-wrap{
    overflow:auto;
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f7;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:1500px;
}

th, td{
    padding:14px 16px;
    border-bottom:1px solid #edf2f7;
    text-align:left;
    vertical-align:top;
}

th{
    background:#f8fafc;
    color:#334155;
    font-size:14px;
}

.status{
    display:inline-block;
    padding:8px 12px;
    border-radius:999px;
    font-weight:700;
    font-size:13px;
}

.status-paid{
    background:#dcfce7;
    color:#166534;
}

.status-pending{
    background:#fef3c7;
    color:#92400e;
}

.status-failed{
    background:#fee2e2;
    color:#991b1b;
}

.inline-form input,
.inline-form select{
    width:100%;
    padding:8px 10px;
    border-radius:10px;
    border:1px solid #dbe3ee;
    background:#fbfdff;
}

.inline-form button{
    margin-top:8px;
    width:100%;
}

.small{
    font-size:13px;
    color:var(--muted);
}

@media (max-width: 900px){
    .hero-grid,
    .cards,
    .pricing,
    .grid-2,
    .flyer-wrap,
    .session-cards{
        grid-template-columns:1fr;
    }

    .hero{
        padding:44px 0;
    }

    .hero-card,
    .info-panel,
    .form-shell{
        padding:24px;
    }

    .navbar-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}