:root {
    --navy: #001B44;
    --navy-deep: #001433;
    --blue: #1E5EFF;
    --blue-hover: #1548d4;
    --blue-soft: #E8F0FF;
    --success: #16A34A;
    --success-soft: #DCFCE7;
    --danger: #DC2626;
    --ink: #0F172A;
    --muted: #64748B;
    --line: #E2E8F0;
    --surface: #F8FAFC;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 27, 68, 0.08);
    --font: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }

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

/* ========== NAV ========== */
.campaign-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .35rem 0;
    box-shadow: none;
}
.campaign-nav .navbar-toggler {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: .4rem .55rem;
    box-shadow: none;
}
.campaign-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(30, 94, 255, .12);
}
.campaign-nav .navbar-toggler-icon {
    width: 1.15rem;
    height: 1.15rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23001B44' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.campaign-nav .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--navy) !important;
    font-size: 1rem;
    text-decoration: none;
}
.brand-logos {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-text strong {
    font-size: .98rem;
    font-weight: 800;
    color: var(--navy);
}
.brand-text small {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600;
}
.nav-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.campaign-nav .nav-link {
    color: var(--muted) !important;
    font-weight: 500;
    font-size: .95rem;
}
.campaign-nav .nav-link:hover,
.campaign-nav .nav-link.active {
    color: var(--navy) !important;
}
.btn-claim-nav {
    background: var(--blue-soft) !important;
    color: var(--blue) !important;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    padding: .45rem 1rem !important;
}
.btn-claim-nav:hover,
.btn-claim-nav.active { background: #d7e5ff !important; color: var(--navy) !important; }
.navbar-nav .nav-item + .nav-item .btn-claim-nav {
    margin-left: .35rem;
}

/* ========== BUTTONS ========== */
.btn-primary-blue {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    padding: .75rem 1.35rem;
    transition: .2s ease;
}
.btn-primary-blue:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    color: #fff;
}
.btn-outline-blue {
    background: #fff;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    border-radius: 10px;
    font-weight: 700;
    padding: .75rem 1.35rem;
}
.btn-outline-blue:hover {
    background: var(--blue-soft);
    color: var(--blue);
}
.btn-lg-figma {
    min-height: 52px;
    font-size: 1rem;
    border-radius: 12px;
}

/* ========== HERO ========== */
.hero-figma {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding-bottom: 2.5rem;
}
.hero-figma .container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
    padding: 3.5rem 0 2.5rem;
}
.hero-logo-row {
    display: flex;
    gap: .65rem;
    align-items: center;
    margin-bottom: 1rem;
}
.hero-org-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: .2rem;
}
.hero-slogan {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .82rem;
    font-weight: 700;
    font-style: italic;
    color: #FDBA74;
    margin-bottom: .75rem;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.hero-title {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: .85rem;
}
.hero-nickname {
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    font-weight: 800;
    color: #FB923C;
    letter-spacing: .01em;
    margin: 0 0 .2rem;
    line-height: 1.15;
}
.hero-candidate-name {
    font-size: clamp(.98rem, 2vw, 1.15rem);
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255,255,255,.82);
    margin: 0 0 .55rem;
}
.hero-position {
    font-size: 1.05rem;
    margin-bottom: .9rem;
}
.hero-position span {
    color: #F87171;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    max-width: 34rem;
    margin-bottom: 1.6rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.btn-outline-light-hero {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.75);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
}
.btn-outline-light-hero:hover {
    background: #fff;
    color: var(--navy);
}
.hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 12px;
}
.candidate-number-badge {
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FB923C, #EA580C);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
    z-index: 3;
}
.hero-photo {
    width: min(100%, 380px);
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 22px;
    border: 4px solid rgba(255,255,255,.15);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    background: linear-gradient(160deg, #0a3366, #001B44);
}
.hero-photo.placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #0a3366, #001B44);
    color: rgba(255,255,255,.5);
    font-size: 4rem;
}

.values-section {
    background: #fff;
    position: relative;
    margin-top: -2.75rem;
    padding: 0 0 0.5rem;
    z-index: 3;
}
.values-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 27, 68, 0.12);
    border: 1px solid #EEF2F7;
    padding: 1.6rem 1.25rem;
    position: relative;
    z-index: 2;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
    color: #0F172A;
}
.value-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}
.value-item small {
    display: block;
    font-size: .84rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.3;
}
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #E8F0FF;
    color: #1E5EFF;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: .45rem;
    flex-shrink: 0;
}
.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 2px;
}

@media (max-width: 767.98px) {
    .values-section { margin-top: -2rem; }
}

/* ========== SECTIONS ========== */
.page-wrap { background: var(--surface); min-height: 70vh; }
.section-pad { padding: 2.5rem 0 3rem; }
.page-head {
    margin-bottom: 1.5rem;
}
.page-head h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .35rem;
}
.page-head p { color: var(--muted); margin: 0; }

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

/* ========== CANDIDATE ========== */
.candidate-hero-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.candidate-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.candidate-avatar {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    background: var(--blue-soft);
}
.candidate-avatar.placeholder {
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 2rem;
}
.position-badge {
    display: inline-block;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .55rem;
    border-radius: 999px;
    margin-bottom: .35rem;
}
.social-row {
    display: flex;
    gap: .55rem;
    margin-top: .75rem;
}
.social-row a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--navy);
}
.content-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin: 1.4rem 0 .55rem;
}
.experience-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}
.experience-list li { margin-bottom: .4rem; }
.stats-bar {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.1rem 1rem;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .75rem;
    text-align: center;
}
.stats-bar .stat-label {
    font-size: .82rem;
    font-weight: 600;
    opacity: .92;
}

/* ========== MANIFESTO ========== */
.intentions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}
.intention-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}
.intention-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: .7rem;
    font-size: 1.15rem;
}
.intention-icon.c1 { background: #DBEAFE; color: #1D4ED8; }
.intention-icon.c2 { background: #DCFCE7; color: #15803D; }
.intention-icon.c3 { background: #FEF3C7; color: #B45309; }
.intention-icon.c4 { background: #E0E7FF; color: #4338CA; }
.intention-icon.c5 { background: #FCE7F3; color: #BE185D; }
.intention-icon.c6 { background: #FFEDD5; color: #C2410C; }
.intention-card h3 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .35rem;
}
.intention-card p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}
/* ========== ABOUT PAGE ========== */
.about-page { max-width: 760px; }
.about-heading { margin-bottom: 1.5rem; }
.about-heading h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .55rem;
}
.about-underline {
    display: block;
    width: 52px;
    height: 4px;
    background: #DC2626;
    border-radius: 999px;
}
.about-profile {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.75rem;
}
.about-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    background: var(--blue-soft);
}
.about-photo.placeholder {
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 2.5rem;
    min-height: 160px;
}
.about-profile-copy h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .2rem;
}
.about-nick {
    color: #64748b;
    font-weight: 600;
    margin: 0 0 .25rem;
}
.about-role {
    color: #DC2626;
    font-weight: 700;
    margin: 0 0 .65rem;
}
.about-bio {
    color: var(--muted);
    margin-bottom: .85rem;
}
.about-block { margin-bottom: 1.5rem; }
.about-block h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .55rem;
}
.about-block p { color: var(--muted); margin: 0; }
.experience-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}
.experience-checks li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .65rem;
    color: var(--muted);
}
.check-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #DBEAFE;
    color: #1E5EFF;
    display: grid;
    place-items: center;
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.about-stats { margin-top: .5rem; }

.manifesto-page { max-width: 760px; }
.intent-statement {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1.35rem 1.4rem;
    margin: 0 0 1.5rem;
}
.intent-statement p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.intent-statement p:last-child { margin-bottom: 0; }
.manifesto-cta {
    margin-top: 1.5rem;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem;
    text-align: center;
}
.manifesto-cta .cta-line-1 {
    margin: 0 0 .35rem;
    font-weight: 600;
    color: rgba(255,255,255,.95);
}
.manifesto-cta .cta-line-2 {
    margin: 0;
    font-weight: 800;
    color: #F87171;
}

@media (max-width: 575.98px) {
    .about-profile { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 220px; }
}

/* ========== GIFT WIZARD (Figma) ========== */
.gift-page {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 40, 80, .1);
    border: 1px solid #e8eef6;
}

.gift-hero {
    background: linear-gradient(180deg, #1a56db 0%, #1648b8 55%, #123a96 100%);
    color: #fff;
    text-align: center;
    padding: 1.75rem 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.gift-hero-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 28%, #fbbf24 0 3px, transparent 4px),
        radial-gradient(circle at 22% 18%, #f472b6 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 78% 22%, #34d399 0 3px, transparent 4px),
        radial-gradient(circle at 88% 35%, #60a5fa 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 70% 12%, #a78bfa 0 2px, transparent 3px),
        radial-gradient(circle at 35% 40%, #fb7185 0 2px, transparent 3px),
        radial-gradient(circle at 55% 8%, #fde047 0 2.5px, transparent 3.5px);
    animation: confetti-drift 4s ease-in-out infinite alternate;
}

@keyframes confetti-drift {
    from { transform: translateY(0); opacity: .85; }
    to { transform: translateY(8px); opacity: 1; }
}

.gift-lordicon {
    width: 110px;
    height: 110px;
    margin: 0 auto .85rem;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.gift-anim {
    width: 92px;
    height: 92px;
    margin: 0 auto .85rem;
    position: relative;
    animation: gift-float 2.4s ease-in-out infinite;
}

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

.gift-lid {
    width: 70px;
    height: 18px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px 4px 2px 2px;
    position: relative;
    box-shadow: 0 2px 0 rgba(0,0,0,.06);
    animation: lid-pop 2.4s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes lid-pop {
    0%, 70%, 100% { transform: translateY(0) rotate(0); }
    80% { transform: translateY(-10px) rotate(-4deg); }
    90% { transform: translateY(-6px) rotate(3deg); }
}

.gift-bow {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 22px;
    height: 14px;
    margin-left: -11px;
    background: #f97316;
    border-radius: 50% 50% 40% 40%;
    box-shadow: -14px 2px 0 #f97316, 14px 2px 0 #f97316;
}

.gift-bow::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    background: #ea580c;
    border-radius: 2px;
}

.gift-box {
    width: 64px;
    height: 48px;
    margin: 2px auto 0;
    background: #fff;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

.gift-ribbon-v,
.gift-ribbon-h {
    position: absolute;
    background: #f97316;
}

.gift-ribbon-v {
    width: 12px;
    height: 100%;
    left: 50%;
    margin-left: -6px;
    top: 0;
}

.gift-ribbon-h {
    height: 12px;
    width: 100%;
    top: 50%;
    margin-top: -6px;
    left: 0;
}

.gift-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fde047;
    animation: spark 1.6s ease-in-out infinite;
}

.gift-spark-1 { top: 8px; left: 4px; animation-delay: 0s; }
.gift-spark-2 { top: 0; right: 10px; background: #f472b6; animation-delay: .4s; }
.gift-spark-3 { bottom: 18px; right: 0; background: #34d399; animation-delay: .8s; }

@keyframes spark {
    0%, 100% { transform: scale(.6); opacity: .4; }
    50% { transform: scale(1.3); opacity: 1; }
}

.gift-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 5vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 .4rem;
    position: relative;
    z-index: 1;
}

.gift-hero-sub {
    margin: 0;
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(255,255,255,.88);
    max-width: 28ch;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.gift-stepper {
    display: flex;
    justify-content: space-between;
    gap: .35rem;
    padding: 1.1rem 1.15rem .35rem;
    background: #fff;
}

.gift-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.gift-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    background: #dbe3ef;
    z-index: 0;
}

.gift-step.is-done:not(:last-child)::after { background: #22c55e; }

.gift-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto .35rem;
    display: grid;
    place-items: center;
    font-size: .75rem;
    font-weight: 700;
    background: #e8eef6;
    color: #64748b;
    border: 2px solid #e8eef6;
    position: relative;
    z-index: 1;
}

.gift-step.is-active .gift-step-dot {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .18);
}

.gift-step.is-done .gift-step-dot {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.gift-step-label {
    font-size: .68rem;
    font-weight: 600;
    color: #94a3b8;
}

.gift-step.is-active .gift-step-label { color: var(--blue); }
.gift-step.is-done .gift-step-label { color: #16a34a; }

.gift-card {
    margin: .85rem 1rem 1.25rem;
    padding: 1.25rem 1.1rem 1.15rem;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 40, 80, .04);
}

.gift-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 .35rem;
}

.gift-card-sub {
    color: var(--muted);
    font-size: .88rem;
    margin: 0 0 1.1rem;
}

.gift-field { position: relative; margin-bottom: 1rem; }

.gift-input {
    width: 100%;
    border: 1.5px solid #d7e0ec;
    border-radius: 10px;
    padding: .85rem 2.75rem .85rem 1rem;
    font-size: 1rem; /* keep >=16px to avoid iOS zoom */
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}

.gift-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.gift-input-icon {
    position: absolute;
    right: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.15rem;
    pointer-events: none;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { opacity: .55; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

.gift-btn-primary {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 1rem;
    transition: background .15s, transform .15s;
}

.gift-btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

.gift-btn-secondary {
    width: 100%;
    border: 1.5px solid #d7e0ec;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: border-color .15s, background .15s;
}

.gift-btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: #f8fbff; }

.gift-btn-outline {
    width: 100%;
    border: 1.5px solid var(--blue);
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.gift-btn-outline:hover { background: #eff6ff; color: var(--blue); }

.gift-btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-top: .35rem;
}

.gift-how {
    margin-top: 1.15rem;
    background: #eff6ff;
    border-radius: 12px;
    padding: 1rem 1rem .95rem;
}

.gift-how-title {
    font-size: .92rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 .65rem;
}

.gift-how-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #475569;
    font-size: .82rem;
    line-height: 1.55;
}

.gift-how-list li + li { margin-top: .35rem; }

.gift-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin: 1rem 0 0;
    color: #94a3b8;
    font-size: .78rem;
}

.gift-note-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: grid;
    place-items: center;
    font-size: .65rem;
    font-weight: 700;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}

.network-btn {
    border: 0;
    border-radius: 14px;
    min-height: 88px;
    display: grid;
    place-items: center;
    padding: .75rem;
    transition: transform .15s, box-shadow .15s;
    cursor: pointer;
}

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

.network-logo {
    max-width: 88px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: logo-bob 2.8s ease-in-out infinite;
}

@keyframes logo-bob {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.network-mtn { background: #ffcc00; }
.network-airtel { background: #ed1c24; }
.network-glo { background: #00a651; }
.network-9mobile { background: #0a0a0a; }

.network-btn {
    position: relative;
}

.network-btn.is-detected {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .35);
}

.network-detected-tag {
    position: absolute;
    top: .45rem;
    right: .45rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    background: #fff;
    color: #1e3a8a;
    border-radius: 999px;
    padding: .15rem .45rem;
    z-index: 1;
}

.gift-offer {
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(59, 130, 246, .18), transparent 55%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid #dbe7f8;
    border-radius: 18px;
    padding: 1.4rem 1rem 1.25rem;
    margin-bottom: 1.15rem;
}

.gift-offer-kicker {
    margin: 0;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gift-offer-amount {
    margin: .35rem 0 .55rem;
    font-size: clamp(2.4rem, 8vw, 3.4rem);
    line-height: 1;
    font-weight: 800;
    color: var(--blue-dark, #1e3a8a);
    letter-spacing: -.02em;
}

.gift-offer-meta {
    margin: 0;
    font-size: .92rem;
    color: var(--muted);
}

.plan-list { display: grid; gap: .65rem; margin-bottom: 1rem; }

.plan-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border: 1.5px solid #d7e0ec;
    border-radius: 12px;
    padding: .9rem 1rem;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
    margin: 0;
}

.plan-option:hover { border-color: #93c5fd; background: #f8fbff; }

.plan-option:has(input:checked) {
    border-color: var(--blue);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.plan-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
    flex-shrink: 0;
}

.plan-name {
    flex: 1;
    font-weight: 700;
    color: var(--ink);
    font-size: .95rem;
}

.plan-price {
    font-weight: 700;
    color: var(--muted);
    font-size: .92rem;
}

.confirm-list {
    display: grid;
    gap: .85rem;
    margin-bottom: 1.15rem;
}

.confirm-row {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.confirm-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    animation: icon-pulse 2.2s ease-in-out infinite;
}

.confirm-icon i { font-size: 1rem; transform: none; }

.confirm-meta { display: grid; gap: .1rem; min-width: 0; }

.confirm-label {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.confirm-value {
    font-size: .98rem;
    font-weight: 700;
    color: var(--ink);
}

.confirm-net-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin-right: .25rem;
}

.gift-actions-stack { display: grid; gap: .65rem; }

.gift-success-page {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 40, 80, .1);
    border: 1px solid #e8eef6;
}

.gift-success-hero {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    text-align: center;
    padding: 2.25rem 1.25rem 3.25rem;
    position: relative;
    overflow: hidden;
}

.gift-success-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255,255,255,.55) 0 3px, transparent 4px),
        radial-gradient(circle at 30% 15%, #fde047 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 70% 20%, #93c5fd 0 3px, transparent 4px),
        radial-gradient(circle at 85% 35%, #f9a8d4 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 55% 40%, rgba(255,255,255,.4) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 55%, #fbbf24 0 2px, transparent 3px);
    animation: confetti-drift 3.5s ease-in-out infinite alternate;
}

.gift-success-check {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    color: #16a34a;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    animation: success-pop .55s cubic-bezier(.2, .9, .3, 1.35);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

@keyframes success-pop {
    from { transform: scale(.45); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gift-success-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4.5vw, 1.65rem);
    font-weight: 800;
    margin: 0 0 .5rem;
    position: relative;
    z-index: 1;
}

.gift-success-sub {
    margin: 0;
    font-size: .92rem;
    color: rgba(255,255,255,.92);
    position: relative;
    z-index: 1;
}

.gift-success-body {
    padding: 0 1rem 1.35rem;
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
}

.gift-receipt {
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px rgba(15, 40, 80, .08);
    margin-bottom: 1rem;
}

.gift-receipt-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .88rem;
    padding: .35rem 0;
}

.gift-receipt-row span { color: var(--muted); }
.gift-receipt-row strong { color: var(--ink); font-weight: 700; text-align: right; word-break: break-all; }

.gift-success-thanks {
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 .35rem;
}

.gift-success-note {
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    margin: 0 0 1.15rem;
}

.gift-success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.gift-success-actions .gift-btn-primary,
.gift-success-actions .gift-btn-secondary {
    padding: .8rem .65rem;
    font-size: .88rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    margin-top: 2rem;
}
.site-footer a { color: #fff; }
.footer-rule { border-color: rgba(255,255,255,.12); }

/* ========== CONTACT ========== */
.contact-wa {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 20px;
    padding: 2.25rem 1.5rem 1.85rem;
    box-shadow: 0 12px 40px rgba(15, 40, 80, .08);
}

.contact-wa-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
}

.contact-wa-kicker {
    margin: 0 0 .35rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #25D366;
}

.contact-wa-title {
    font-size: clamp(1.55rem, 4vw, 1.85rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 .55rem;
}

.contact-wa-sub {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.5;
    margin: 0 auto 1.35rem;
    max-width: 30ch;
}

.contact-wa-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ea580c;
    margin: 0 0 .15rem;
}

.contact-wa-fullname {
    font-size: .98rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 .2rem;
}

.contact-wa-role {
    font-size: .85rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    background: #25D366;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    padding: .95rem 1.15rem;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .28);
}

.contact-wa-btn:hover {
    background: #1ebe57;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, .35);
    color: #fff !important;
}


@media (max-width: 991.98px) {
    .hero-figma {
        min-height: 0;
        padding-bottom: 3.25rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.65rem 0 1.25rem;
    }
    .hero-logo-row { margin-bottom: .75rem; }
    .hero-org-logo {
        width: 44px;
        height: 44px;
    }
    .hero-slogan {
        font-size: .72rem;
        letter-spacing: .14em;
        margin-bottom: .65rem;
    }
    .hero-title {
        font-size: clamp(1.7rem, 7.5vw, 2.25rem);
        margin-bottom: .65rem;
    }
    .hero-nickname {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    }
    .hero-candidate-name {
        font-size: .95rem;
    }
    .hero-sub {
        font-size: .95rem;
        margin-bottom: 1.25rem;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .65rem;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-photo-wrap {
        order: 2;
        padding-bottom: 0;
    }
    .hero-photo {
        width: min(100%, 280px);
        border-width: 3px;
        border-radius: 18px;
    }

    .values-section {
        margin-top: -2rem;
        padding: 0 .15rem 0.25rem;
    }
    .values-card {
        padding: 1.15rem .85rem 1.05rem;
        border-radius: 18px;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem .55rem;
    }
    .value-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: .3rem;
    }
    .value-item strong { font-size: .92rem; }
    .value-item small { font-size: .75rem; }

    .campaign-nav .navbar-collapse {
        margin-top: .65rem;
        padding: .35rem 0 .5rem;
        border-top: 1px solid var(--line);
    }
    .campaign-nav .navbar-nav {
        gap: .15rem !important;
    }
    .campaign-nav .nav-link {
        padding: .7rem .15rem !important;
        font-size: 1rem;
    }
    .campaign-nav .btn-claim-nav {
        display: block;
        text-align: center;
        margin: .45rem 0 0 !important;
        width: 100%;
        padding: .7rem 1rem !important;
    }

    .gift-page {
        margin: .75rem .75rem 1.75rem;
        border-radius: 16px;
        max-width: none;
    }
    .gift-hero {
        padding: 1.35rem 1rem 1.25rem;
    }
    .gift-hero-title {
        font-size: 1.4rem;
    }
    .gift-hero-sub {
        font-size: .84rem;
    }
    .gift-stepper {
        padding: .95rem .75rem .25rem;
        gap: .2rem;
    }
    .gift-step-label { font-size: .62rem; }
    .gift-step-dot {
        width: 26px;
        height: 26px;
        font-size: .7rem;
    }
    .gift-card {
        margin: .65rem .75rem 1rem;
        padding: 1.05rem .9rem 1rem;
    }
    .gift-card-title { font-size: 1.05rem; }
    .gift-btn-row {
        grid-template-columns: 1fr;
    }
    .network-grid { gap: .6rem; }
    .network-btn { min-height: 78px; border-radius: 12px; }

    .gift-success-page {
        margin: .75rem .75rem 1.75rem;
        border-radius: 16px;
        max-width: none;
    }
    .gift-success-actions {
        grid-template-columns: 1fr;
    }

    .contact-wa {
        margin: 0 .5rem;
        padding: 1.75rem 1.15rem 1.5rem;
        border-radius: 16px;
    }
    .section-pad { padding: 1.75rem 0 2.25rem; }
    .page-wrap { padding: 1.25rem 0 1.75rem; min-height: auto; }
    .about-holly-btn { width: 100%; }

    .site-footer .text-md-end {
        text-align: left !important;
    }
    .site-footer .justify-content-md-end {
        justify-content: flex-start !important;
    }
}

@media (max-width: 575.98px) {
    .intentions-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .brand-text small { font-size: .68rem; }
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-kicker {
        font-size: .72rem;
        padding: .3rem .65rem;
    }
    .position-badge {
        font-size: .7rem;
    }
    .about-page .about-photo,
    .candidate-avatar {
        border-radius: 14px;
    }
}

.network-logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: .02em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.15);
    animation: logo-bob 2.8s ease-in-out infinite;
}

.network-mtn .network-logo-text { color: #0033a0; text-shadow: none; }

.gift-btn-row > form { margin: 0; }
.gift-btn-row > form .gift-btn-outline,
.gift-btn-row > form .gift-btn-secondary { width: 100%; }
.gift-btn-row:has(> :only-child) { grid-template-columns: 1fr; }

.gift-input.is-invalid { border-color: #ef4444; }
