/* Finlo article page — how-to-price-event-tickets */
:root {
    --primary: #28a745;
    --primary-glow: rgba(40, 167, 69, 0.45);
    --secondary: #111111;
    --dark: #050508;
    --light: #f4f6f8;
    --muted: rgba(255, 255, 255, 0.68);
    --gradient: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    --container-x: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: var(--container-x);
    padding-right: var(--container-x);
}
@media (min-width: 1200px) { :root { --container-x: 32px; } }

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(40, 167, 69, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 85% 70%, rgba(52, 206, 87, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 100%, rgba(20, 90, 45, 0.35) 0%, transparent 45%),
        #050508;
}
.page-bg__grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(40, 167, 69, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 167, 69, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridDrift 28s linear infinite;
    pointer-events: none;
}
@keyframes gridDrift {
    0% { transform: translate(0, 0); opacity: 1; }
    50% { opacity: 0.85; }
    100% { transform: translate(-48px, -48px); opacity: 1; }
}
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.55;
}
.orb--1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.5) 0%, transparent 70%);
    top: -120px; right: -80px;
    animation: orbFloat 14s ease-in-out infinite;
}
.orb--2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(80, 200, 120, 0.35) 0%, transparent 70%);
    bottom: 10%; left: -100px;
    animation: orbFloat 18s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.article-hero {
    padding: 140px 0 72px;
    position: relative;
}
.article-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(52, 206, 87, 0.35);
    color: #b8f0c8;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 28px 2px rgba(40, 167, 69, 0.25); }
}
.article-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin-bottom: 20px;
}
.article-hero h1 span {
    background: linear-gradient(120deg, #ffffff 0%, #7dffc0 50%, #34ce57 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.article-hero__lead {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 54ch;
    margin-bottom: 28px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.article-meta i { color: var(--primary); margin-right: 8px; }

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; }
}

.ticket-stage {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ticket-svg-wrap {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
    animation: ticketHover 5s ease-in-out infinite;
}
@keyframes ticketHover {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
.ticket-svg-wrap svg { width: 100%; height: auto; display: block; }
.ticket-stroke {
    fill: none;
    stroke: url(#ticketGrad);
    stroke-width: 2;
    stroke-dasharray: 8 6;
    animation: dashMove 20s linear infinite;
}
@keyframes dashMove {
    to { stroke-dashoffset: -400; }
}
.qr-pulse { animation: qrGlow 2.4s ease-in-out infinite; }
@keyframes qrGlow {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(52,206,87,0.6)); }
}

.hero-visual-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
    animation: ticketHover 5s ease-in-out infinite;
}
.hero-visual-wrap svg { width: 100%; height: auto; display: block; }

.article-wrap { padding-bottom: 100px; }
.article-card {
    background: linear-gradient(145deg, rgba(18, 22, 28, 0.92) 0%, rgba(10, 12, 16, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px 56px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
}
@media (max-width: 768px) {
    .article-card { padding: 32px 22px 40px; }
}
.article-card h2 {
    font-size: 1.65rem;
    margin: 2.2rem 0 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.article-card h2:first-of-type { margin-top: 0; }
.article-card p {
    margin-bottom: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.0625rem;
}
.article-card ul {
    margin: 1rem 0 1.25rem 1.25rem;
    color: rgba(255, 255, 255, 0.82);
}
.article-card li { margin-bottom: 0.65rem; }
.article-card strong { color: #e8fff0; font-weight: 600; }

.keyword-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 8px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.keyword-strip span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(52, 206, 87, 0.22);
    color: rgba(200, 240, 210, 0.95);
}

.motion-form-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.motion-form-section h2 { margin-top: 0; }
.motion-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 28px;
}
@media (max-width: 768px) {
    .motion-form-grid { grid-template-columns: 1fr; }
}
.motion-form {
    position: relative;
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(52, 206, 87, 0.15);
    overflow: hidden;
}
.motion-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(130deg, rgba(52,206,87,0.5), transparent 40%, rgba(40,167,69,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSpin 8s linear infinite;
    pointer-events: none;
}
@keyframes borderSpin {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.mf-field { position: relative; margin-bottom: 22px; }
.mf-field input, .mf-field select, .mf-field textarea {
    width: 100%;
    padding: 16px 14px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.mf-field textarea { min-height: 88px; resize: vertical; }
.mf-field input:focus, .mf-field select:focus, .mf-field textarea:focus {
    outline: none;
    border-color: rgba(52, 206, 87, 0.65);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
    transform: translateY(-2px);
}
.mf-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    transition: color 0.3s, transform 0.3s;
}
.mf-field:focus-within label {
    color: #34ce57;
    transform: translateX(4px);
}
.mf-shine {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mf-field:focus-within .mf-shine { width: 100%; }
.mf-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    background: var(--gradient);
    color: #061208;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s;
}
.mf-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-100%);
    animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
    0%, 70% { transform: translateX(-100%); }
    85%, 100% { transform: translateX(100%); }
}
.mf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.45);
}

.article-cta {
    margin-top: 40px;
    padding: 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.18) 0%, rgba(10, 14, 12, 0.9) 100%);
    border: 1px solid rgba(52, 206, 87, 0.25);
    text-align: center;
}
.article-cta p { margin-bottom: 18px; color: rgba(255,255,255,0.88); }
.article-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: var(--gradient);
    color: #061208;
}
.article-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand img { height: 50px; margin-bottom: 25px; }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-contact { display: flex; flex-direction: column; gap: 15px; }
.footer-contact a {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.7);
}
.footer-contact a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); width: 20px; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); color: var(--dark); }
.footer-links h4 {
    font-size: 18px; font-weight: 600; margin-bottom: 25px; color: var(--primary);
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 30px; }
.footer-bottom-links a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--primary); }
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .footer { padding: 50px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
