/* ============================================================
   InEvently — custom overrides on top of Landrick
   ============================================================ */

/* Brand wordmark */
.logo-wordmark {
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 22px;
    color: #2f55d4;
    line-height: 1;
}
.logo-wordmark .dot { color: #2eca8b; }

/* Hero */
.hero-inevently {
    background: linear-gradient(135deg, rgba(47,85,212,0.05) 0%, rgba(46,202,139,0.06) 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero-inevently { padding: 120px 0 60px; }
}
.hero-inevently::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -8%;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,85,212,0.12), transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.hero-inevently .container { position: relative; z-index: 1; }
.hero-headline {
    font-size: 54px !important;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}
@media (max-width: 991px) { .hero-headline { font-size: 40px !important; } }
@media (max-width: 575px) { .hero-headline { font-size: 34px !important; } }

.hero-eyebrow {
    display: inline-block;
    background: rgba(46,202,139,0.12);
    color: #2eca8b;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Hero mock dashboard */
.hero-mock {
    position: relative;
    padding: 20px;
}
.hero-mock .mock-frame {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(47,85,212,0.25), 0 10px 30px -10px rgba(60,72,88,0.15);
    overflow: hidden;
    position: relative;
}
.hero-mock .mock-topbar {
    background: #f8f9fa;
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    gap: 6px;
    align-items: center;
}
.hero-mock .mock-topbar span {
    width: 10px; height: 10px; border-radius: 50%;
    background: #e9ecef;
}
.hero-mock .mock-topbar span:nth-child(1) { background: #e43f52; }
.hero-mock .mock-topbar span:nth-child(2) { background: #f17425; }
.hero-mock .mock-topbar span:nth-child(3) { background: #2eca8b; }
.hero-mock .mock-body {
    padding: 24px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    min-height: 320px;
}
.hero-mock .mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.hero-mock .mock-stat {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 14px;
}
.hero-mock .mock-stat .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8492a6;
    margin-bottom: 6px;
}
.hero-mock .mock-stat .value {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
}
.hero-mock .mock-stat .value small {
    font-size: 12px;
    color: #2eca8b;
    font-weight: 600;
    margin-left: 6px;
}
.hero-mock .mock-chart {
    height: 140px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.hero-mock .mock-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(47,85,212,0.8), rgba(47,85,212,0.3));
    border-radius: 4px 4px 0 0;
    min-height: 10%;
}
.hero-mock .floating-card {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 15px 35px rgba(60,72,88,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-mock .floating-card .icon-box {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.hero-mock .floating-card.card-a {
    top: 40px; left: -20px;
}
.hero-mock .floating-card.card-a .icon-box {
    background: rgba(46,202,139,0.12); color: #2eca8b;
}
.hero-mock .floating-card.card-b {
    bottom: 60px; right: -20px;
    animation-delay: 1.5s;
}
.hero-mock .floating-card.card-b .icon-box {
    background: rgba(241,116,37,0.12); color: #f17425;
}
.hero-mock .floating-card .fc-label {
    font-size: 11px;
    color: #8492a6;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.hero-mock .floating-card .fc-value {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}
@media (max-width: 768px) {
    .hero-mock .floating-card.card-a { top: 10px; left: 0; }
    .hero-mock .floating-card.card-b { bottom: 20px; right: 0; }
    .hero-mock .floating-card .fc-value { font-size: 15px; }
    .hero-mock .floating-card .icon-box { width: 34px; height: 34px; font-size: 16px; }
}

/* Feature tiles */
.feature-tile {
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(60,72,88,0.08);
    height: 100%;
    transition: all .35s ease;
}
.feature-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(47,85,212,0.2);
    box-shadow: 0 15px 35px rgba(47,85,212,0.1);
}
.feature-tile .tile-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,85,212,0.1);
    color: #2f55d4;
    font-size: 26px;
    margin-bottom: 18px;
}
.feature-tile.variant-success .tile-icon { background: rgba(46,202,139,0.12); color: #2eca8b; }
.feature-tile.variant-warning .tile-icon { background: rgba(241,116,37,0.12); color: #f17425; }
.feature-tile.variant-danger  .tile-icon { background: rgba(228,63,82,0.12); color: #e43f52; }
.feature-tile.variant-info    .tile-icon { background: rgba(23,162,184,0.12); color: #17a2b8; }
.feature-tile.variant-dark    .tile-icon { background: rgba(33,37,41,0.08); color: #212529; }
.feature-tile h5 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-tile p { color: #6c757d; margin-bottom: 0; font-size: 15px; line-height: 1.6; }

/* Comparison table */
.comparison-wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(60,72,88,0.08);
    overflow: hidden;
}
.comparison-table {
    width: 100%;
    margin: 0;
}
.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f5;
}
.comparison-table .check { color: #2eca8b; font-size: 20px; }
.comparison-table .cross { color: #e43f52; font-size: 20px; }
.comparison-table thead th {
    background: #f8f9fa;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
}
.comparison-table td.row-label {
    font-weight: 600;
    color: #212529;
}
.comparison-table .highlight-col {
    background: rgba(47,85,212,0.04);
    border-left: 2px solid #2f55d4;
    border-right: 2px solid #2f55d4;
}
.comparison-table thead .highlight-col {
    background: #2f55d4;
    color: #fff;
    border-left-color: #2f55d4;
    border-right-color: #2f55d4;
}
.comparison-table tr:last-child td { border-bottom: 0; }

/* Pricing cards */
.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 30px;
    border: 1px solid rgba(60,72,88,0.08);
    height: 100%;
    transition: all .35s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(47,85,212,0.12);
}
.pricing-card.featured {
    border: 2px solid #2f55d4;
    box-shadow: 0 20px 50px rgba(47,85,212,0.15);
}
.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2f55d4;
    color: #fff;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: #212529;
    letter-spacing: -1.5px;
    line-height: 1;
}
.pricing-card .price .currency { font-size: 22px; vertical-align: super; font-weight: 600; }
.pricing-card .price-note { color: #6c757d; font-size: 14px; margin-top: 6px; }
.pricing-card ul.plan-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}
.pricing-card ul.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: flex-start;
    color: #495057;
    font-size: 15px;
}
.pricing-card ul.plan-features li:last-child { border-bottom: 0; }
.pricing-card ul.plan-features li i {
    color: #2eca8b;
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}
.pricing-card ul.plan-features li.excluded { color: #adb5bd; }
.pricing-card ul.plan-features li.excluded i { color: #dee2e6; }

/* Fee calculator */
.calc-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(60,72,88,0.08);
}
.calc-card .calc-input {
    font-size: 28px;
    font-weight: 700;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
}
.calc-card .calc-input:focus { border-color: #2f55d4; }
.calc-breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px;
    margin-top: 24px;
}
.calc-breakdown .row-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #495057;
}
.calc-breakdown .row-line.total {
    border-top: 2px solid #dee2e6;
    margin-top: 10px;
    padding-top: 14px;
    font-weight: 700;
    font-size: 17px;
    color: #212529;
}
.calc-breakdown .row-line.nonprofit-gets {
    color: #2eca8b;
    font-weight: 700;
    font-size: 17px;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, #2f55d4 0%, #1e3a9e 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -40%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(46,202,139,0.2);
    filter: blur(80px);
}
.cta-band h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}
.cta-band p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }

/* Auth pages */
.auth-wrap {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(47,85,212,0.04) 0%, rgba(46,202,139,0.06) 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(60,72,88,0.1);
    padding: 48px 40px;
}
@media (max-width: 575px) { .auth-card { padding: 32px 24px; } }
.auth-card h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.auth-card .auth-sub {
    color: #6c757d;
    margin-bottom: 28px;
}

/* Section titling */
.section-eyebrow {
    display: inline-block;
    color: #2f55d4;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-title-lg {
    font-size: 38px !important;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
}
@media (max-width: 767px) {
    .section-title-lg { font-size: 28px !important; }
}

/* Alt-section (soft gradient background) */
.bg-soft-gradient {
    background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
}

/* Utility */
.text-balance { text-wrap: balance; }
